我正在阅读有关通过不使用事件处理程序而是使用委托或通过从事件处理程序中调用其他函数来重载事件处理程序的类似问题。但是我真的看不到如何将委托绑定到自定义控件,就像我在下面的代码中绑定ButtonClick一样。我有一个带有10个自定义控件的表单。每个自定义控件都有5个按钮。我从每个自定义控件的每个按钮传递按键的方式是:
这在我的自定义控件的CS文件(GlobalDebugMonitorControl.cs)中
namespace GlobalDebugMonitor
{
public partial class GlobalDebugMonitorControl : UserControl
{
public GlobalDebugMonitorControl()
{
InitializeComponent();
}
public event EventHandler ButtonClick;
private void MultiControl_Click(object sender, EventArgs e)
{
if (this.ButtonClick != null)
this.ButtonClick(sender, e);//**How Do I put here both sender and this**
}
}
}
然后自定义control.designer.cs中的所有按钮都具有以下内容:
this.openFileBTN.Click += new System.EventHandler(this.MultiControl_Click);
this.editFilePathBTN.Click += new System.EventHandler(this.MultiControl_Click);
this.delControlBTN.Click += new System.EventHandler(this.MultiControl_Click);
this.addControlBTN.Click += new System.EventHandler(this.MultiControl_Click);
this.editCompanyNameBTN.Click += new System.EventHandler(this.MultiControl_Click);
然后以我的形式1
namespace GlobalDebugMonitor
{
public partial class Form1 : Form
{
protected void UserControl_ButtonClick(object sender, EventArgs e)
{
Button tempButton = (Button)sender;
GlobalDebugMonitorControl tempParentControl = (GlobalDebugMonitorControl)((tempButton.Parent).Parent).Parent;
}
private void Form1_Load(object sender, EventArgs e)
{
foreach (string item in tempGlobalPaths)
{
GlobalDebugMonitorControl tempGDMcontrol = new GlobalDebugMonitorControl();
tempGDMcontrol.Name = item.Split(',')[0];
tempGDMcontrol.companyNameLBL.Text = item.Split(',')[0];
tempGDMcontrol.globalPathTXT.Text = item.Split(',')[1];
tempGDMcontrol.ButtonClick += new EventHandler(UserControl_ButtonClick);
flowLayoutPanel1.Controls.Add(tempGDMcontrol);
}
}
}
}
如您所见,我由发送方创建了一个tempButton来执行某些操作,该操作基于按下按钮5中的哪个按钮以及sender.parent.parent(自定义控件位于表格中,该表格位于内部的布局内)另一个面板等),我终于到达了自定义控件,它告诉我10个自定义控件中的哪个按钮被按下。
问题是,有没有办法传递发件人(被按下的按钮)和曾祖父(拥有发件人按钮的自定义控件)?我的意思是它有效,但是现在我需要这种方式,我需要上升多少个“世代”。
谢谢你读我。
答案 0 :(得分:3)
您可以介绍自己的EventArgs类型
<%= @the_string.html_safe %>
,然后更改eventHandler以使用它:
public class CustomEventArgs : EventArgs
{
public GlobalDebugMonitorControl Control { get; set; }
public CustomEventArgs(GlobalDebugMonitorControl control)
{
this.Control = control;
}
}
因此调用代码为:
public event EventHandler<CustomEventArgs> ButtonClick;
当然是事件的实施者:
this.ButtonClick(sender, new CustomEventArgs(this));