我目前正在连接一个用户控件,该控件具有弹出到母版页的按钮单击。我看了很多帖子来达到我目前的职位,但我不确定我是否以正确的方式做事,以及我是否拥有最好的抽象水平。
我正在使用自定义事件参数,如下所示:
public class JumpEventArgs : EventArgs
{
readonly int _supplierID;
public int SupplierID
{
get { return _supplierID; }
}
public JumpEventArgs(int supplierID)
{
supplierID.ThrowDefault("supplierID");
_supplierID = supplierID;
}
}
在用户控件中,我有这个:
这应该从用户控件中抽象出来吗?
public event EventHandler<JumpEventArgs> Jumped;
protected void LinkButtonJump_Click(object sender, EventArgs e)
{
var handler = Jumped;
if (handler != null)
{
var args = new JumpEventArgs(ProductID);
Jumped(this, args);
}
}
我的母版页处理程序执行一些对跳转事件通用的操作,以及一些对页面显式执行的操作。我一直在思考如何将两者结合起来。
下面是母版页:
void AddEventHandlers()
{
var jumpCtls = this.DeepFind<JumpButton>();
jumpCtls.ForEach(uc => uc.Jumped += new EventHandler<JumpEventArgs>(JumpCtl_Clicked));
}
void JumpCtl_Clicked(object sender, JumpEventArgs e)
{
var j = new JumpEvent(e); // this is generic and can be reused
j.AddTrack();
MobileSearch.VisitedList.Refresh(); // this is master page only
}
这是跳跃类:
这应该与 JumpEventArgs 类合并吗?
public class JumpEvent
{
readonly JumpEventArgs _args;
public void AddTrack()
{
// do something
}
public JumpEvent(JumpEventArgs args)
{
args.ThrowNull("args");
_args = args;
}
JumpEventArgs Args
{
get { return _args; }
}
}
我不确定是母版页处理程序,它将 eventargs 传递给通用类"JumpEvent" - 有些事情似乎不太对劲 - 我可能想多了,但归根结底我不确定。
任何建议表示赞赏。
您可以为此使用普通按钮。看起来你的JumpButton并没有真正做比标准按钮更多的事情,所以它似乎只是增加了不必要的复杂性。
<asp:Button id="JumpBtn" OnClick="JumpBtn_Click" CommandArgument="Supplier3" runat="server" Text="Jump!" />
代码隐藏:
protected void JumpBtn_Click(object sender, EventArgs e)
{
var supplierId = JumpBtn.CommandArgument; //do something with supplierId
MobileSearch.VisitedList.Refresh();
}
您可以使用内联数据绑定表达式动态绑定CommandArgument
。如果您的JumpBtn
应该位于某种控件模板(如 Repeater
中),您还可以将发件人强制转换为 Button 类。
这并不复杂。
"将按钮添加到页面"
<asp:Button ID="ButtonAction" OnClick="ButtonAction_Click" runat="server">
Jump!
</asp:Button>
将点击事件传递给自定义事件
protected void ButtonAction_Click(object sender, EventArgs e)
{
if (this.Jumped != null)
{
this.Jumped(this, this.ProductId);
}
}
您的自定义事件
public event EventHandler<int> Jumped;
然后在母版页中使用它
void JumpCtl_Clicked(object sender, int e)
{
var supplierId = e;
// Do what you want
}