4

在 UserControl1 中有一个我想在 UserControl2 中连接的自定义事件。

在 UserControl1 我已将自定义事件声明为:

 public event MYDelegate SendMessage;

而我的委托定义在其他类库中:

public delegate string MYDelegate(string message);

我在我的代码中触发 SendMessage,如下所示:

  SendMessage(txt.Text);

请指导我如何在 UserControl2 中连接 SendMessage() 事件。我的想法是在下面的示例中执行类似的操作,但不确定如何获取/访问 UserControl2 中的 UserControl1 对象。

请帮我。

UserControl1.SendMessge+=ListnerMetod();
4

2 回答 2

4

你快到了。您只需要将 SendMessage 附加到 UserControl2 的 ListnerMetod。

正如 Mark Hall 所说,在不知道父页面的情况下将事件从一个控件触发到另一个控件并不是一个好习惯。

这是通过父页面触发事件的示例代码。

Default.aspx(父页面)

<%@ Register Src="SenderUserControl.ascx" TagName="SenderUserControl" 
  TagPrefix="uc1" %>
<%@ Register Src="ReceiverUserControl.ascx" TagName="ReceiverUserControl" 
  TagPrefix="uc2" %>
<uc1:SenderUserControl ID="SenderUserControl1" runat="server" />
<uc2:ReceiverUserControl ID="ReceiverUserControl1" runat="server" />

public partial class _Default : Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        SenderUserControl1.SendMessage += m => ReceiverUserControl1.ListnerMethod(m);
    }
}

发件人用户控件.ascx

public delegate void MessageHandler(string message);

public partial class SenderUserControl : System.Web.UI.UserControl
{
    public event MessageHandler SendMessage;

    protected void Button1_Click(object sender, EventArgs e)
    {
        SendMessage("test");
    }
}

ReceiverUserControl.ascx

public partial class ReceiverUserControl : System.Web.UI.UserControl
{
    public void ListnerMethod(string message)
    {

    }
}

归功于马克霍尔

于 2013-04-30T04:41:45.430 回答
2

If both UserControls are hosted by the same parent, attach a handler in the parent to the UserControls event that you want to subscribe to then call a method in the second UserControl in the handler.

于 2013-04-30T01:32:30.787 回答