winforms - How to fit C# application in every resolution -


i want know how fit c# application in every resolution c# application open in computer perfect when install application on client machine it's show half application.

what have tried:

this.windowstate = formwindowstate.maximized; this.location = new point(0, 0); this.size = screen.primaryscreen.workingarea.size; 

this won't work all, need desing application responsive. need use panels, groupboxes , objects these , need anchor these objects inside form, need user screen resolution , set application.

summary: code may works not not perfect resolution. absoluty need anchoring objects. desktop application have pain matter.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

c# - Json.Net Serialize String from URI -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -