Hi,
It is possible to drag a Forms width.
What I want is to prevent a user to drag the Forms width more than the value 405.
I have tried out with the code below but nothing happens when I drag the width of the form. Thanks!
private: System::Void Form1_SizeChanged(System::Object^ sender, System::EventArgs^ e)
{
if( Form1::Width > 405 )
{
Form1::Width == 405;
}
}