c#給使用者控制項添加事件處理常式

來源:互聯網
上載者:User

標籤:for   art   代碼   ar   new   c#   程式   使用者   

1.首先在usercontrol後台添加如下代碼:

 public partial class MyControl: UserControl

{

       //添加事件代理
       public event EventHandler AX;

       //在需要響應的事件中添加

        private void MyControl_MouseClick(object sender, MouseEventArgs e)
        {
            if (AX != null)
            {
                AX(this, e);
                //Or use the following sentence code.
                //AX(this, new EventArgs());
            }

        }

}

2.在表單或頁面添加一個使用者控制項,在Page_Load或Form_Load事件中添加:

 private void FrmRBD_Load(object sender, EventArgs e)
 {
      MyControl1.AX += new EventHandler(Event_AX);
 }

        protected void Event_AX(object sender, EventArgs e)
        {
            MessageBox.Show("Event has occur!<br/>");
        }

以添加自訂按鈕的Click事件舉例,這裡需要注意的是,如果自訂控制項上是多個控制項的組合,比如Picture控制項上有個Label控制項,這樣子的話,需要在 public partial class MyControl: UserControl 中把Picture和Label的Click都映射到MyControl的Click,否則事件也不會調用!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.