vc隐藏任务栏标签

放到OnInitDialog就行了

 

//隐藏任务栏标签
 DWORD   Style   =   ::GetWindowLong(m_hWnd,GWL_EXSTYLE);  
 Style   =   WS_EX_TOOLWINDOW   ;  
 ShowWindow(FALSE);  
 ::SetWindowLong(m_hWnd,GWL_EXSTYLE,Style);    
 ShowWindow(TRUE);

 

 

http://topic.csdn.net/t/20020608/09/787892.html 

你可能感兴趣的:(vc隐藏任务栏标签)