how to hide windows TitleBar
-
:)who can tell me about how to hide windows TitleBar in c#,like windows Media Player 10.0 . thanx d
Set the dialog box style to not have a title bar. Christian Graus - Microsoft MVP - C++
-
Set the dialog box style to not have a title bar. Christian Graus - Microsoft MVP - C++
-
thanks,for ur reply, i want to know how to hide the window titlebar,and its sizeable property still useing d -- modified at 12:47 Tuesday 29th November, 2005
Yes, there's a different property to set the dialog frame type, you can make it not sizable there. Christian Graus - Microsoft MVP - C++
-
Yes, there's a different property to set the dialog frame type, you can make it not sizable there. Christian Graus - Microsoft MVP - C++
-
tankx,but i need the Form resizeable without title bar,My applications UI like MSN 7.5, can u answer me before look over MSN or MS MediaPlayer UI? thank u d -- modified at 23:18 Tuesday 29th November, 2005
If you hide the title bar, can't you still resize the form by the edges ? If not, then you can easily code this behaviour, just capture the mouse on the edges, and if it's down, use the amount the mouse moves to resize your form. Christian Graus - Microsoft MVP - C++
-
If you hide the title bar, can't you still resize the form by the edges ? If not, then you can easily code this behaviour, just capture the mouse on the edges, and if it's down, use the amount the mouse moves to resize your form. Christian Graus - Microsoft MVP - C++
-
yes, i can't resize the form after hide tile bar in runtime, i know ur means,and code it easily in VC++,but u can give me the code in C# , i dont know well C#. thankx very much! :) d
It seems there is one property - formborderstyle, and sizable is one option, none is another. The only option I can think of is the one I gave - make it none, and then code the sizing part yourself. Christian Graus - Microsoft MVP - C++