找回密码
 加入我们

QQ登录

只需一步,快速开始

搜索
查看: 7232|回复: 1

[开源] 【分享】vc 使窗口置顶 在最前面

[复制链接]

1214

主题

352

回帖

11

精华

管理员

菜鸟

积分
93755

贡献奖关注奖人气王精英奖乐于助人勋章

发表于 2009-8-24 22:15:51 | 显示全部楼层 |阅读模式
<p>bool SetWindowTop(CWnd* pWnd)<br/>{<br/>if(!pWnd)<br/>{<br/>&nbsp;&nbsp; return false;<br/>}<br/>if(pWnd-&gt;GetExStyle()&amp;WS_EX_TOPMOST)<br/>{<br/>&nbsp;&nbsp; return true;<br/>}<br/>else<br/>{<br/>&nbsp;&nbsp; int i= pWnd-&gt;SetWindowPos(&amp;CWnd::wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);<br/>&nbsp;&nbsp; if (i==0)<br/>&nbsp;&nbsp;&nbsp; return false;<br/>&nbsp;&nbsp; else<br/>&nbsp;&nbsp;&nbsp; return true;</p>
<p>}<br/>}</p>
<p>//取消窗口置顶<br/>CancelWindowTop(CWnd* pWnd)<br/>{<br/>if(pWnd)<br/>{<br/>&nbsp;&nbsp; int x=pWnd-&gt;SetWindowPos(&amp;CWnd::wndNoTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);<br/>&nbsp;&nbsp; if(x==0)<br/>&nbsp;&nbsp;&nbsp; return false;<br/>&nbsp;&nbsp; else<br/>&nbsp;&nbsp;&nbsp; return true;<br/>}<br/>else<br/>{<br/>&nbsp;&nbsp; return false;<br/>}<br/>}</p>
【VB】QQ群:1422505加的请打上VB好友
【易语言】QQ群:9531809  或 177048
【FOXPRO】QQ群:6580324  或 33659603
【C/C++/VC】QQ群:3777552
【NiceBasic】QQ群:3703755

1214

主题

352

回帖

11

精华

管理员

菜鸟

积分
93755

贡献奖关注奖人气王精英奖乐于助人勋章

 楼主| 发表于 2009-8-24 23:24:21 | 显示全部楼层
<p>//这段代码没测试</p>
<p>&nbsp;</p>
<p><font face="Verdana">//vc 显示窗口到最前面的代码</font></p>
<p><font face="Verdana">typedef BOOL(WINAPI *AllowSetForegroundWindowFn_t)(DWORD dwProcessId);</font></p>
<p><font face="Verdana">HMODULE hModule = NULL;<br/>AllowSetForegroundWindowFn_t pProcAddress = NULL;<br/>hModule = GetModuleHandle("User32");<br/>if (hModule != NULL)<br/>{<br/>&nbsp; pProcAddress = (AllowSetForegroundWindowFn_t)GetProcAddress(hModule, <br/>&nbsp;&nbsp;&nbsp; "AllowSetForegroundWindow");<br/>}</font></p>
<p><font face="Verdana">if (pProcAddress != NULL)<br/>{<br/>&nbsp; if (pProcAddress( - 1))<br/>&nbsp; {<br/>&nbsp;&nbsp;&nbsp; SetForegroundWindow(Hwnd);<br/>&nbsp; }<br/>}</font></p>
<p><font face="Verdana">if (IsIconic(Hwnd))<br/>{<br/>&nbsp; ShowWindow(Hwnd, SW_RESTORE);<br/>}</font></p>
[此贴子已经被作者于2009-8-24 23:25:17编辑过]
【VB】QQ群:1422505加的请打上VB好友
【易语言】QQ群:9531809  或 177048
【FOXPRO】QQ群:6580324  或 33659603
【C/C++/VC】QQ群:3777552
【NiceBasic】QQ群:3703755
您需要登录后才可以回帖 登录 | 加入我们

本版积分规则

快速回复 返回顶部 返回列表