0

すべてのイベントで新しいものを作成するTextChanged-EventHandler プログラムを c# で作成しました。EventHandler(TextChanged) でこれを行うにはどうすればよいですか?TextBoxbutton1_ClickTextBox

namespace WindowsFormsApplication5
{
    public partial class Form1 : Form
    {
        Int32 i = 1;

    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        TextBox c = new TextBox();
        this.Controls.Add(c);
        c.Name = "x" + i.ToString();
        c.Left = 3;
        c.Top = 30 * i;
        i++;
        c.TextChanged += new EventHandler(c_TextChanged);


    }

    void c_TextChanged(object sender, EventArgs e)
    {
        textBox1.Text =           
    }

}
}
4

2 に答える 2