我有一个C#.Net 2.0应用程序,它实现了如下FullscreenMode:

targetForm.WindowState = FormWindowState.Maximized;
targetForm.FormBorderStyle = FormBorderStyle.None;
targetForm.TopMost = true;
WinApi.SetWinFullScreen(targetForm.Handle); // let me know if you need the code of this methode

如果用户处于FullscreenMode并尝试打开“帮助”,则没有任何反应(用户可见),HelpWindow将显示在我的全屏表单后面。帮助文件将像这样被openend:
string helpPath= Registry.CurrentUser.OpenSubKey(@"Software\...").GetValue("HelpFile") as string;
System.Diagnostics.Process.Start(helpPath); // the helpfile is a *.chm file

是否可以启动Process TopMost或将其置于调用表单的前面?如果是这样,怎么办?

最佳答案

我一直在使用以下代码将当前窗口移至顶部:

    [DllImport("user32")]
    static extern int BringWindowToTop(int hwnd);

    BringWindowToTop(this.Handle.ToInt32());

关于winforms - 开始一个过程TopMost,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2317025/

10-12 05:54