Resolution independent or monitor size independent

2019-01-25 20:17发布

how could i develop resolution independent and monitor size independent wpf apps. monitor size independent means here suppose i develop a wpf apps in 15inch monitor and when i will view that apps in 17 inch monitor then often UI looks different so how could i get rid of this problem in WPF. please guide in detail. thanks

3条回答
聊天终结者
2楼-- · 2019-01-25 21:02

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:

查看更多
小情绪 Triste *
3楼-- · 2019-01-25 21:02

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.

查看更多
虎瘦雄心在
4楼-- · 2019-01-25 21:08

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

查看更多
登录 后发表回答