Resolution independent or monitor size independent WPF apps

大兔子大兔子 提交于 2019-11-29 07:50:49

What you are looking for is Liquid Layout in WPF.

Avoid specifying explicit Width and Height for your elements and it should scale up to whatever screen resolution available.

Of course, MinWidth, MaxWidth and MinHeight, MaxHeight are also useful in restricting the size.

Reference:

That's pretty complicated question. Basically, WPF was created to allow to create resolution independent application. For example, all values (width, height etc.) are in Device Independent Pixels, where each point is 1/96 of an inch (which matches one pixel per point for monitor with DPI set to 96).

But of course this will not let you create completely device independent applications. Here you need to remember to use appropriate layout mechanisms, like using DockPanel, StackPanel or Grid, and not Canvas. Your controls should be set to fill all available space (HorizontalAlignment set to Stretch), only some should have Width or Height set explicitly.

It's rather big topic, good practices, that will allow you to complete your goal are spreaded over the web and books, probably no one will be able to put it in here in short version.

Provided the DPI for the system display is set correctly the WPF should scale the interface appropriately.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!