如何自定义 ASP.Net 气泡事件以传递附加变量?

发布于 2024-08-29 13:25:43 字数 174 浏览 2 评论 0原文

我使用 BubbleEvent 将事件从 Web 用户控件传递给其父控件(这是一个带有代码隐藏页面的 Default.aspx)。

我想使用 BubbleEvent 不仅传递发送者和事件,还传递整数或另一个变量。

有没有办法向 BubbleEvent 添加参数,或者我应该采取不同的方法来解决这个问题?

I am using BubbleEvent to give events from a web user control to its parent (which is a Default.aspx with code behind page).

I would like to use BubbleEvent to not only pass the sender and event, but also an integer or another variable.

Is there a way to add a parameter to the BubbleEvent, or is there a different way I should be approaching this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时常饿 2024-09-05 13:25:43

以下是您需要遵循的步骤

  1. 创建一个继承 EventArgs 的类
  2. 在该类中为您需要传递的附加数据创建一个属性
  3. 回调 BubbleEvent 时,传递发送者和新的继承类而不是常规的 EventArgs 类。如果您需要更多详细信息,请告诉我。

Here are the steps you need to follow

  1. Create a class that inherits EventArgs
  2. Create a property in this class for the additional data that you need to pass
  3. When calling back the BubbleEvent, pass the sender and the new inherited class instead of the regular EventArgs class. Let me know if you need additional details.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文