gpt4 book ai didi

c# - 用户控件的显示/显示事件

转载 作者:太空宇宙 更新时间:2023-11-03 13:55:55 24 4
gpt4 key购买 nike

我想在显示/显示我的用户控件时弹出/显示一个对话框。但是我找不到任何这样的事件。我有哪些选择,我需要做什么才能自己实现?

我正在使用 DevExpress XtraUserControl。

谢谢。

最佳答案

注册到主窗体的Activated 事件。

public Form1()
{
InitializeComponent();
this.Activated +=new EventHandler(Form1_GotFocus);
}

public void Form1_GotFocus(object sender, EventArgs e)
{
//your payload here
}

请注意,如果您关闭对话框并返回表单,该事件将再次触发。

关于c# - 用户控件的显示/显示事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12170921/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com