1. 显示和隐藏标题栏
方法一:使用API实现
//隐藏TitleBar
LONG lStyle = ::GetWindowLong(this-m_hWnd, GWL_STYLE);
::SetWindowLong(this-m_hWnd, GWL_STYLE, lStyle & ~WS_CAPTION);
::SetWindowPos(this-m_hWnd, NULL, 0, 0, 0, 0,
SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED);
// 显示TitleBar
::SetWindowLong(this-m_hWnd, GWL_STYLE, lStyle | WS_CAPTION);
::SetWindowPos(this-m_hWnd, NULL, 0, 0, 0, 0,??SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED...[ 查看全文 ]