Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 webpart 中,我加载了两个用户控件。我希望能够在另一个控件中触发事件时填充其中一个控件,必须在控件之间传递一个参数。
您可以让您的 Web 部件将这两个控件连接在一起,因此假设您的控件是生产者和消费者。
void on_Load() { producer.CustomEvent+=new EventHandler(consumer.HandleCustomEvent); }
这是更简单的解决方案之一,但它可能很脆弱。