2

我在 UserControl 中有一个公共函数,它接受一个 EventHandler 参数并将其分配给在运行时创建的一堆 LinkBut​​tons。在 EventHandler 中传递的函数位于带有 UserControl 的表单上。没有到达回调函数中定义的断点,所以我认为我做错了什么。

默认.aspx

<uc1:tcControl runat="server" ID="tc1" />

默认.aspx.cs

tcControl1.ShowTags(new EventHandler(ClickHandler));

void ClickHandler(object sender, EventArgs e)

tcControl.ascx.cs

public void ShowTags(EventHandler handlerCallback)

LinkButton lb = new LinkButton();
lb.ID = t.Name.Replace(" ", "_");
lb.Text = t.Name.Replace(" ", "&nbsp;");
lb.Click += handlerCallback;
4

1 回答 1

7

我认为您应该在父页面可以订阅的用户控件中公开一个公共事件。

来自http://www.marten-online.com/csharp/simple-custom-event-handling.html

  public delegate void LinkButtonClickHandler (object sender,  EventArgs data);

  // The event
  public event LinkButtonClickHandler LinkButtonClicked;

  // The method which fires the Event
  protected void OnLinkButtonClick (object sender,  EventArgs data)
  {
      // Check if there are any Subscribers
      if (LinkButtonClicked!= null)
      {
          // Call the Event
          LinkButtonClicked(this, data);
      }
  }

现在,在您的父页面上,您可以在 Page_Load 事件中订阅此事件:

public void Page_Load()
{
    userControl.LinkButtonClicked += HandleUserControlLinkButtonClicked;
}

private void HandleUserControlLinkButtonClicked(object sender, EventArgs data)
{
    // Handle the click as you wish
}
于 2013-10-04T18:27:37.900 回答