ahbu Posted December 2, 2003 Posted December 2, 2003 Hi, I want to create a caption-less windows form in c#. I know I can set the formborderstyle to none, but I want to allow the form to be sizeable. How can I do it? Thanks, Winnie Quote
AlexCode Posted December 2, 2003 Posted December 2, 2003 I belive you have to do the resizing code... Nothing very fancy... straight foward code, combining the MouseDown event and the Cursor.Position Method... Alex :D Quote Software bugs are impossible to detect by anybody except the end user.
*Experts* Volte Posted December 2, 2003 *Experts* Posted December 2, 2003 An easier method would be to set the Caption to "" (zero length) and the ControlBox property to False. The caption will disappear, but leave the sizable border. Quote
AlexCode Posted December 2, 2003 Posted December 2, 2003 Nice trick :D Didn't knew that... :p Quote Software bugs are impossible to detect by anybody except the end user.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.