我有一个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将显示在我的全屏表单后面。帮助文件的开放性如下:
string helpPath= Registry.CurrentUser.OpenSubKey(@"Software\...").GetValue("HelpFile") as string;
System.Diagnostics.Process.Start(helpPath); // the helpfile is a *.chm file
是否可以启动Process
TopMost或将其带到调用表单前面?如果是这样,怎么样?
答案 0 :(得分:0)
我一直在使用以下代码将当前窗口置于顶部:
[DllImport("user32")]
static extern int BringWindowToTop(int hwnd);
BringWindowToTop(this.Handle.ToInt32());