Can i delete the title bar/caption after the window be created?
WS_OVERLAPPEDWINDOW will got a title bar, how can i dele开发者_StackOverflow中文版te it after it be created?
Use SetWindowLong
with GWL_STYLE
flag to remove the WS_OVERLAPPED
flag. Then call SetWindowPos
with SWP_FRAMECHANGED
to notify system that the window style has changed
精彩评论