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.
通常将此代码用于调用者来自控制器 ex 的事件:按钮
button7.Click += new System.EventHandler(this.button7_Click);
或者
button7.PerfomClick();
但是如果按钮被禁用不起作用,即使禁用我也需要调用事件,有可能吗?
事件处理程序只不过是一个函数,因此您可以直接调用它。
PerformClick不适用于禁用按钮。代替PerformClick,您可以直接调用处理程序。
PerformClick
button7_Click(button7, EventArgs.Empty)