隐藏系统状态栏中的窗体

时间:2014-01-20 19:55:30   收藏:0   阅读:389
1
2
3
4
5
隐藏状态栏中的窗体
 
ShowWindow( Handle, SW_HIDE );
    SetWindowLong( Handle, GWL_EXSTYLE,GetWindowLong(Handle, GWL_EXSTYLE) or WS_EX_TOPMOST or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
    ShowWindow( Handle, SW_SHOW );

  

原文:http://www.cnblogs.com/hejoy91/p/3527138.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!