I'm developing an user interface of my application . and for the designing I'm using devXpress controls. and I'm developing application in the C# windows forms.
I've developed the user interface of my application but when I'm changing my computers resolution setting then that time my user interface design changes according to the size of all the controls. But it should not happened with the user interface. how to resolve this probl开发者_C百科em? is there any solution for resolving this problem?
Consider not to set absolute positions for your controls, but instead use Control.Dock and Control.Anchor properties to position them relative to their parent and/or siblings.
If I understand correctly you want to scale instead of resize.
Did you try changing the DPI of your desktop instead of the resolution?
WinForms might support that (I haven't tried it) but in general WinForms forms do not scale. WPF apps support scaling very well because WPF uses vectors.
精彩评论