gpt4 book ai didi

c# - 检测我的表单何时获得焦点

转载 作者:行者123 更新时间:2023-11-30 13:01:52 28 4
gpt4 key购买 nike

我在一个包含多个表单的大型应用程序中使用 C# 和 WinForms 工作。

在几个点上,我有另一个表单作为进度屏幕出现。因为我无法卡住我的 UI 线程,所以我必须在新线程中启动新表单。我正在使用 progressform.ShowDialog() 来启动表单,但是因为它在一个新线程中,所以可以单击或 Alt + Tab 返回主表单.我想禁用它。

我的想法是,我可以在 mainForm.GotFocus 事件上放置一个 EventHandler 并将焦点重定向到 progressForm(如果显示)。但是,当您切换应用程序或在 progressFormmainForm 之间移动时,不会触发 GotFocus 事件。我猜这是因为 mainForm 中的某些元素有焦点,而不是表单本身。

如果有人知道执行此操作的更好方法(我不致力于 EventHandler 方法)或 EventHandler 方法的工作代码,它将解决我的问题。

编辑

根据评论,我尝试使用 Activated 事件。

// in InitializeForm()
this.Activated += FocusHandler;

// outside of InitializeForm()
void FocusHandler(object sender, EventArgs e)
{
if (ProgressForm != null)
{
ProgressForm.Focus();
}
}

但它仍然允许我单击返回主窗体并单击按钮。

最佳答案

我已经尝试了一些方法并发现它确实如您所愿,整个想法是在显示进度表时过滤来自主 UI 的一些消息:

public partial class Form1 : Form
{
[DllImport("user32")]
private static extern int SetForegroundWindow(IntPtr hwnd);
public Form1()
{
InitializeComponent();
}
ChildUI child = new ChildUI();
bool progressShown;
IntPtr childHandle;
//I suppose clicking on the button1 on the main ui form will show a progress form.
private void button1_Click(object sender, EventArgs e)
{
if(!progressShown)
new Thread(() => { progressShown = true; childHandle = child.Handle; child.ShowDialog(); progressShown = false; }).Start();
}
protected override void WndProc(ref Message m)
{
if (progressShown&&(m.Msg == 0x84||m.Msg == 0xA1||m.Msg == 0xA4||m.Msg == 0xA3||m.Msg == 0x6))
//0x84: WM_NCHITTEST
//0xA1: WM_NCLBUTTONDOWN
//0xA4: WM_NCRBUTTONDOWN
//0xA3 WM_NCLBUTTONDBLCLK //suppress maximizing ...
//0x6: WM_ACTIVATE //suppress focusing by tab...
{
SetForegroundWindow(childHandle);//Bring your progress form to the front
return;//filter out the messages
}
base.WndProc(ref m);
}
}

如果你想正常显示你的进度表(不是对话框),使用Application.Run(),正常显示表单(使用Show())而不处理一些 while 循环将在显示表单后几乎立即终止该表单:

private void button1_Click(object sender, EventArgs e)
{
//progressShown = true;
//child.Show();
if (!progressShown)
{
new Thread(() => {
progressShown = true;
if (child == null) child = new ChildUI();
childHandle = child.Handle;
Application.Run(child);
child = null;
progressShown = false;
}).Start();
}
}

我已经测试过,它非常有效。

关于c# - 检测我的表单何时获得焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17305574/

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