62,243
社区成员




public Form1()
{
InitializeComponent();
//如果要引发Click事件,可以调用EventHandler委托,并传递所有与事件有关的参数(sender,e)。
this.Click += new EventHandler(Form1_Click);
}
void Form1_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
}