C#を使用してWindowsフォームアプリケーションを作成しています。実行時にプログラムでボタンやその他のコントロールを追加します。これらのボタンのクリックイベントを処理する方法を知りたいですか?
次を試してください
Button b1 = CreateMyButton();
b1.Click += new EventHandler(this.MyButtonHandler);
...
void MyButtonHandler(object sender, EventArgs e) {
...
}
このコードを使用して、いくつかのボタンのクリックイベントを処理します。
private int counter=0;
private void CreateButton_Click(object sender, EventArgs e)
{
//Create new button.
Button button = new Button();
//Set name for a button to recognize it later.
button.Name = "Butt"+counter;
// you can added other attribute here.
button.Text = "New";
button.Location = new Point(70,70);
button.Size = new Size(100, 100);
// Increase counter for adding new button later.
counter++;
// add click event to the button.
button.Click += new EventHandler(NewButton_Click);
}
// In event method.
private void NewButton_Click(object sender, EventArgs e)
{
Button btn = (Button) sender;
for (int i = 0; i < counter; i++)
{
if (btn.Name == ("Butt" + i))
{
// When find specific button do what do you want.
//Then exit from loop by break.
break;
}
}
}
クリックされたボタンを確認したい場合は、ボタンを作成して割り当てたら、次の操作を実行できます。ボタンIDを手動で作成することを検討します。
protected void btn_click(object sender, EventArgs e) {
Button btn = (Button)sender // if you're sure that the sender is button,
// otherwise check if it is null
if(btn.ID == "blablabla")
// then do whatever you want
}
また、各ボタンにコマンド引数を指定して確認することもできます。
配列の各要素にタグを追加しながら、これは機能するようです
Button button = sender as Button;
より良い方法を知っていますか?
この例を確認してください 5つのボタンを作成し、C#で個々のクリックイベントを動的に割り当てる方法
どのボタンがクリックされたかを知りたいというコメントに関しては、ボタンの.Tag属性を、作成して使用する任意の種類の識別文字列に設定できます。
private void MyButtonHandler(object sender, EventArgs e)
{
string buttonClicked = (sender as Button).Tag;
}