Reputation: 53
I just want to create an application with several functions.
but i don't need a normal window frame with this:
here is what I need :
could you please give me some examples to explore the windows programming
Upvotes: 1
Views: 2919
Reputation: 24447
For more specific questions, you should probably pose a new question since right now your question is very general and broad.
Upvotes: 2
Reputation: 24273
To remove the window frame and border, you need to remove the WS_BORDER
and WS_THICKFRAME
styles when you create the window. How you do this depends on the framework in use and how you're creating thw window.
Have a look at Windows Application bars that allow windows to be docked to the side of the workspace.
Upvotes: 1