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.
我想在显示/显示我的用户控件时弹出/显示一个对话框。但我找不到任何这样的事件。我有什么选择,我必须自己做些什么来实现它?
我正在使用 DevExpress XtraUserControl。
谢谢。
注册到Activated主窗体的事件。
Activated
public Form1() { InitializeComponent(); this.Activated +=new EventHandler(Form1_GotFocus); } public void Form1_GotFocus(object sender, EventArgs e) { //your payload here }
请注意,如果您关闭对话框并返回到表单,则会再次触发该事件。