Differences in Drawing by Version of .NET Framework

Asked 2 years ago, Updated 2 years ago, 98 views

The .NET Framework 4.0 and 4.5 and 4.6 seem to have different drawing processes.I'm not sure what the difference is.
Don't you know what the differences are?

c# .net wpf

2022-09-29 22:14

1 Answers

WPF updates to the .NET Framework for each version change the internal drawing process or add new features.

For example…
WPF 4.6: Change layout rounding during high DPI
WPF 4.5:Adding properties to control the scroll unit of the virtualization panel (VirtualizingPanel.ScrollUnit)
and so on.

If you are in a high-resolution environment, you will often experience changes in appearance, especially due to changes in the rounding process of the layout.

Note:
http://grabacr.net/archives/5341


2022-09-29 22:14

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.