イベントのトリガメカニズム、定義、登録


ソリューションの下にASPを作成します.NET空WEBアプリケーション、WebForm 1を追加します.aspxページで、buttonコントロールをページに追加します.次に、Webユーザーコントロールを追加します.デフォルトの名前はWebUserControl 1です.ascx、このユーザーコントロールは実はコンテナですが、確かにコントロールです.WebUserControl 1にbuttonコントロールをドラッグします.ascxでは、Textプロパティに「クリック」という名前が付けられています.
WebForm 1をダブルクリックします.aspxは、一番下の「デザイン」をクリックし、「分割」をクリックしてWebUserControl 1.ascxをWebForm 1.aspxページにドラッグします.
WebUserControl 1.ascxをWebForm 1にドラッグします.aspxページの後、WebForm 1.aspxページのソースコードは次のようになります.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="    2.WebForm1" %>

<%@ Register src="WebUserControl1.ascx" tagname="WebUserControl1" tagprefix="uc1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Button ID="Button1" runat="server" Text="Button" />
        <uc1:WebUserControl1 ID="WebUserControl11" runat="server" />
    
    </div>
    </form>
</body>
</html>

WebUserControl1.ascx.csページ
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace     2
{
    public partial class WebUserControl1 : System.Web.UI.UserControl
    {
        public event EventHandler MyClick; //EventHandler          ,       MyClick  
        protected void Page_Load(object sender, EventArgs e)
        {
            
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            MyClick(sender, e); //     Button1  ,      “  ”      ,  MyClick  。              ?:          ,                。        ResponseMe,          。
        }

       
    }
}

WebForm1.aspx.csページ
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace     2
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        
        protected void Page_Load(object sender, EventArgs e)
        {
            WebUserControl11.MyClick += ResponseMe;  //MyClick      WebUserControl11      ,    MyClick        
        }

        public void ResponseMe(object senser, EventArgs e)
        {
            Button1.Text = "     "; //    。 WebForm1.aspx  Button1   Text    
        }
    }
}