gpt4 book ai didi

C# SetWindowPos窗口置顶使用说明

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 29 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章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),

这样,新打开的窗体就是置顶了 。

最后此篇关于C# SetWindowPos窗口置顶使用说明的文章就讲到这里了,如果你想了解更多关于C# SetWindowPos窗口置顶使用说明的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com