c# setwindowPos窗口置顶。
具体代码:
复制代码 代码示例:
[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern int SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int y, int Width, int Height, int flags);
/// <summary>
/// 得到当前活动的窗口
/// </summary>
/// <returns></returns>
[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern System.IntPtr GetForegroundWindow();
在Form_Load中加上需要置顶的窗口就可以了。
复制代码 代码示例:
SetWindowPos(this.Handle, -1, 0, 0, 0, 0, 1 | 2); //最后参数也有用1 | 4
具体说明,请大家找下API函数说明吧。
若使用点击一个按钮后弹出新窗体,并置顶,请参照如下的写法:
复制代码 代码示例:
Form2 frm = new Form2();
frm.Show();
SetWindowPos(GetForegroundWindow(), -1, 0, 0, 0, 0, 1 | 2);
如此,即可将新开的窗体也置顶了。