.Net事件不用注册

以前我们在写按钮事件的时候,都需要生成事件,如:

 

this.Button2.Click += new System.EventHandler(this.Button2_Click); private void Button2_Click(object sender, System.EventArgs e) { } 今天我测试了一下,在BUTTON的ONCLICK里写了事件,然后直接在.CS代码里写事件:<¥ button id="Button1" style="WIDTH: 40px; HEIGHT: 24px" onclick="MyVoid" text="Button"¥><¥/button¥> 然后在.CS页面里写下: protected void MyVoid(object sender,System.EventArgs e) { //My events } 这样就可以轻松实现了..呵呵 PS:为了不让¥是我故意加的,否则在HTML里,无法现实正常的代码!

你可能感兴趣的:(.Net事件不用注册)