无标题栏的窗体,点击任务栏图标最小化
作者:admin 日期:2011-05-21
        const int WS_EX_TOOLWINDOW = 0x80;
        const long WS_POPUP = 0x80000000L;
        const int WS_VISIBLE = 0x10000000;
        const int WS_SYSMENU = 0x80000;
        const int WS_MAXIMIZEBOX = 0x10000;
 const int WS_EX_STATICEDGE=0x00020000L;
C代码;
long style=GetWindowLong(hWnd,GWL_STYLE);
SetWindowLong(hWnd,GWL_STYLE,style|0x20000);
评论: 0 | 查看次数: 9286
      
 订阅
              
VC++MFC 窗口最大化、最小化的实现!
                  
无标题栏窗口移动
                  
 
                
文章来自: 
Tags: