在同一页面中另一个用户控件引发的事件上填充用户控件

发布于 2024-07-14 19:46:19 字数 68 浏览 6 评论 0原文

在 Web 部件中,我加载了两个用户控件。 我希望能够在另一个控件中触发事件时填充其中一个控件,必须在控件之间传递参数。

In a webpart I have two user controls loaded. I want to be able to populate one of the controls when an event is triggered in the other control, a parameter has to be passed between the controls.

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

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

发布评论

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

评论(1

原野 2024-07-21 19:46:19

您可以让您的 Web 部件将两个控件连接在一起,因此我们假设您的控件是生产者和消费者。

void on_Load()
{
   producer.CustomEvent+=new EventHandler(consumer.HandleCustomEvent);
}

这是更简单的解决方案之一,但它可能很脆弱。

You could have your webpart wire the two controls together so lets assume your controls are producer and consumer.

void on_Load()
{
   producer.CustomEvent+=new EventHandler(consumer.HandleCustomEvent);
}

This is one of the simpler solutions however it can be brittle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文