Hey, I have a doubt about how to disable the resize functionality of the window of my application.
Is there any property ?
Hope u can help me.
Best Regards, Manuel Seromenho
Hey, I have a doubt about how to disable the resize functionality of the window of my application.
Is there any property ?
Hope u can help me.
Best Regards, Manuel Seromenho
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ryan AlfordPosted Jan 31, 2008, 9:51 AM
Manuel SeromenhoPosted Jan 29, 2008, 1:29 PM
Ok, I found a solution, I don't really know if this is the best way, but what I did was change the FormBorderStyle into Fixed Single (on design environment) or I could do it programmaticaly just defining on the Load method this
private
void App_test_Load(object sender, EventArgs e){
FormBorderStyle = FormBorderStyle.FixedSingle;}
Hope this help someone ...