Files
ShrlAlgoToolkit/WPFDark/Internals/WpfHelper.cs

10 lines
233 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00
using System.Windows.Media;
namespace WPFDark.Internals
{
internal static class WpfHelper
{
internal static double PixelsPerDip(this Visual visual)
=> VisualTreeHelper.GetDpi(visual).DpiScaleX;
}
}