c# – 用户控制事件

前端之家收集整理的这篇文章主要介绍了c# – 用户控制事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个用户控件,其中包含一个名为upload的按钮.按钮单击事件如下所示:
protected void btnUpload_Click(object sender,EventArgs e)
{
  // Upload the files to the server
}

在存在用户控件的页面上,在用户点击上传按钮后,我想在用户控件中执行按钮点击事件代码后立即执行某些操作.如何在完成工作后点击Click事件?

解决方法

您必须在用户控件中创建一个事件,例如:
public event EventHandler ButtonClicked;

然后在你的方法中激活事件……

protected void btnUpload_Click(object sender,EventArgs e)
{
   // Upload the files to the server

   if(ButtonClicked!=null)
      ButtonClicked(this,e);
}

然后,您将能够附加到用户控件的ButtonClicked事件.

原文链接:https://www.f2er.com/csharp/239091.html

猜你在找的C#相关文章