Screen Resolution
How to set form size according to screen Resolution in c# ?
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.
brunda kPosted May 1, 2012, 10:39 AM
http://www.c-sharpcorner.com/UploadFile/scottlysle/ScreenResInfo01202007032307AM/ScreenResInfo.aspx
this.Location = new Point(0,0);
this.Size = Screen.PrimaryScreen.WorkingArea.Size;
Kunal VaishyaPosted May 1, 2012, 7:04 AM