启动流程 TopMost
Posted
技术标签:
【中文标题】启动流程 TopMost【英文标题】:Start a process TopMost 【发布时间】:2010-02-23 09:35:46 【问题描述】:我有一个 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
如果用户处于全屏模式并尝试打开帮助,则没有任何反应(用户可见),帮助窗口会显示在我的全屏表单后面。帮助文件像这样打开:
string helpPath= Registry.CurrentUser.OpenSubKey(@"Software\...").GetValue("HelpFile") as string;
System.Diagnostics.Process.Start(helpPath); // the helpfile is a *.chm file
是否可以启动Process
TopMost 或将其放在调用表单的前面?如果有,怎么做?
【问题讨论】:
【参考方案1】:我一直在使用以下代码将当前窗口置于顶部:
[DllImport("user32")]
static extern int BringWindowToTop(int hwnd);
BringWindowToTop(this.Handle.ToInt32());
【讨论】:
以上是关于启动流程 TopMost的主要内容,如果未能解决你的问题,请参考以下文章