Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

C# resize window without title bar

protected override CreateParams CreateParams
{
	get
	{
		CreateParams cp = base.CreateParams;
		cp.Style &= ~0xC00000;
		return cp;
	}
}
 
PREVIOUS NEXT
Tagged: #resize #window #title #bar
ADD COMMENT
Topic
Name
1+3 =