I have a form application in c#, when I change the monitor's Dpi, all the controls move.
I used this code this.AutoScaleMode = AutoScaleMode.Dpi, but it didnt avoid the problem.
Does anyone have an idea?
Thanks,
Rachel
|
|
|
Difficult, but not impossible. Your best option is to move to WPF of course, but that might not be feasible. I've spent A LOT of time with this problem. Here are some rules/guidelines to make it work correctly without a FlowLayoutPanel or TableLayoutPanel:
I guarantee that if you follow these guidelines you will be ok, even when you have placed controls with specific anchors and don't use a flowpanel. We have an app built this way deployed on hundreds of machines with different DPI setups and we no longer have any complaints. All forms/containers/grids/buttons/textfield etc sizes are scaled correctly as is the font. Images work too, but they tend to get a little pixellated at high DPI. EDIT: This link has a lot of good info, especially if you choose to use AutoScaleMode.DPI: link to related stackoverflow question |
|||||||||||
|
|
I finally found solution to problem of both Screen Orientation and DPI handling. Then IMPORTANT part! Inside the code for Landscape() and Portrait() methods at the very end of each add these lines:
So, the code for these 2 methods would be like:
Works like charm for me. |
|||
|
|
|
It is really hard to design DPI aware applications in Windows Forms. You would have to use layout containers that resize properly when the DPI is changed (such as TableLayoutPanel or FlowLayoutPanel). All controls need resizing as well. The configuration of those containers can be a challenge. For simple applications it can be done within a reasonable amount of time, but for big applications it is really alot of work. |
|||
|
|
|
Rachel, Please consider using TablelayoutPanel instead - it forces a grid-like layout despite of the resolution used. If you do so, you can experiment with various Dock styles for your constrols (e.g. Fill), it always does the trick for me. I hope it helps. |
|||
|
|
|
From experience:
|
|||
|
|
|
Sorry guys, all this is crap!!!... Rachel, please follow me, I'll show you: 1 - Since a Winform application form may content controls AND images, allowing the system to resize YOUR window is NOT a solution, but if you could manage to have one form per DPI resolution, with propely scaled images... And that's nor a good idea, since as the screen size grow, the font size diminishes. They will soon supply screens with an attached magnifier I suppose... 2 - Since when using a different DPI resolution the system forces your form to redefine its control's size, location and font, BUT NOT IMAGES, the solution is to change the form's DPI at runtime, when loading, so that everything goes back to original size and location. Here's the solution, I've tested it with a card game application where I've gott some 80 image buttons, TabControls etc... In each form form_Load event, add this code snippet:
Thats it, just give it a go... Besides, a quick trick for testing various resolutions on the same computer, without restarting: From control panel, change the resolution. Do not restart! Instead close your session and open a new one with same user. There is another caveat: If you set a control's size and position at runtime, then you should apply the same DPI factor (eg. 125 / Dpi.Dpix) to the new coordinates. So you'd better set up a DPIFactor global variable from application.startup event. Ah last but not least: DO NOT open your application in Visual Studio from another resolution than the original one, or ALL YOUR CONTROLS will move and resize as you open each form, and there is no way back... Hope this helps, happy programming. Didier |
|||
|
|