码迷,mamicode.com
首页 > 其他好文 > 详细

vc 使窗口置顶 在最前面

时间:2014-07-18 09:20:33      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   os   re   div   c   

bool SetWindowTop(CWnd* pWnd)
{
if(!pWnd)
{
   return false;
}
if(pWnd->GetExStyle()&WS_EX_TOPMOST)
{
   return true;
}
else
{
   int i= pWnd->SetWindowPos(&CWnd::wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
   if (i==0)
    return false;
   else
    return true;

}
}

//取消窗口置顶
CancelWindowTop(CWnd* pWnd)
{
if(pWnd)
{
   int x=pWnd->SetWindowPos(&CWnd::wndNoTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
   if(x==0)
    return false;
   else
    return true;
}
else
{
   return false;
}
}

vc 使窗口置顶 在最前面,布布扣,bubuko.com

vc 使窗口置顶 在最前面

标签:style   blog   os   re   div   c   

原文地址:http://www.cnblogs.com/zhaoxinshanwei/p/3851004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!