2016.5.30让窗口处于最顶层的方法,比TopMost灵活
Posted mol1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016.5.30让窗口处于最顶层的方法,比TopMost灵活相关的知识,希望对你有一定的参考价值。
最简单的方法Form. Activate()
稍复杂的方法用API,目前没有看出比第一种方法有什么好处(可操作其它窗口,这就是好处2016.7.31)
[System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "SetForegroundWindow")]
public static extern bool SetForegroundWindow(IntPtr hWnd);//设置此窗体为活动窗体
SetForegroundWindow(frmAltPro.Handle);
[System.Runtime.InteropServices.DllImport("user32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, ExactSpelling = true)]
public static extern IntPtr GetForegroundWindow(); //获得本窗体的句柄
GetForegroundWindow() //获取当前置顶窗体的句柄
以上是关于2016.5.30让窗口处于最顶层的方法,比TopMost灵活的主要内容,如果未能解决你的问题,请参考以下文章