我希望获得Button
中点击的UserControl
事件,并在我的表单中动态添加UserControl
。我希望在我添加Form
的{{1}}中引发该事件。如果有人能以正确的方式建议我,那将非常有帮助。
答案 0 :(得分:3)
您需要在用户控件中公开事件,然后在将用户控件添加到表单时进行订阅。 e.g:
public partial MyUserControl:Control
{
public event EventHandler ButtonClicked;
private void myButtonClick(object sender, EventArgs e)
{
if (this.ButtonClicked != null)
this.ButtonClicked(this, EventArgs.Empty);
}
}
public partial MyForm:Form
{
private void MethodWhereYouAddTheUserControl()
{
var myUC = new MyUserControl();
myUC += myUC_ButtonClicked;
// code where you add myUC to the form...
}
void myUC_ButtonClicked(object sender, EventArgs e)
{
// called when the button is clicked
}
}
答案 1 :(得分:2)
我猜你正在使用Winforms引用你的标题。
如何转发Click
事件。
所以在你的UserControl的文件中
public class MyUserControl
{
public event EventHandler MyClick;
private void OnMyClick()
{
if (this.MyClick != null)
this.MyClick(this, EventArgs.Empty);
}
public MyUserControl()
{
this.Click += (sender, e) => this.OnMyClick();
}
}
答案 2 :(得分:0)
将您自己的事件添加到自定义用户控件。
在客户用户控件中,添加按钮后,还会附加(内部)事件处理程序,然后通过某种方式引发事件处理程序,告诉事件处理程序单击了哪个按钮(最有可能)这里需要你自己的代表。)
完成后,您的表单可以添加自己的事件处理程序,就像添加一个标准控件一样。
重读你的问题,这可能不是确切的结构(按钮是固定的,但用户控件是动态添加的?)。无论如何,它应该几乎相同,只是在创建时添加事件处理程序的位置/时间不同。
使用一个静态按钮可以更轻松地完成 - 假设您使用的是Windows窗体:
在您的自定义用户控件中:
public event EventHandler ButtonClicked; // this could be named differently obviously
...
public void Button_OnClick(object sender, EventArgs e) // this is the standard "on button click" event handler created using the form editor
{
if (ButtonClicked != null)
ButtonClicked(this, EventArgs.Empty);
}
以您的形式:
// create a new user control and add the event
MyControl ctl = new MyControl();
Controls.Add(ctl);
ctl.ButtonClicked += new EventHandler(Form_OnUserControlButtonClicked); // name of the event handler in your form that's called once you click the button
...
private void Form_OnUserControlbuttonClicked(object sender EventArgs e)
{
// do whatever should happen once you click the button
}
答案 3 :(得分:0)
当您将usercontrol
添加到form
时,请注册点击事件(如果是public
)usercontrol.button.Click += new EventHandler(usercontrolButton_Click);
在Click
usercontrol
事件
醇>