lizf2019 发表于 2020-12-11 23:56

C#窗口置顶

求助:C#窗口如何实现置顶显示
(dllimport好像不太会搞)
求大佬指点个窗口置顶代码(不影响图片){:301_974:}

DrCatcher 发表于 2020-12-12 00:04

本帖最后由 DrCatcher 于 2020-12-12 00:06 编辑

C#(winform)设置窗口置顶
只要设置窗体的TopMost属性即可:

registerForm.TopMost = true;

https://blog.csdn.net/qq_29331365/article/details/103290123

bookaccount 发表于 2020-12-12 02:11

P/Invoke调用windows api SetForgroundWindow,注意会有一点延时

static extern bool SetForegroundWindow(IntPtr hWnd);

lizf2019 发表于 2020-12-12 10:36

DrCatcher 发表于 2020-12-12 00:04
C#(winform)设置窗口置顶
只要设置窗体的TopMost属性即可:



registerForm这个报错怎么办啊

DrCatcher 发表于 2020-12-12 18:20

lizf2019 发表于 2020-12-12 10:36
registerForm这个报错怎么办啊

你改为this
页: [1]
查看完整版本: C#窗口置顶