10 lines
233 B
C#
10 lines
233 B
C#
|
|
using System.Windows.Media;
|
|||
|
|
|
|||
|
|
namespace WPFDark.Internals
|
|||
|
|
{
|
|||
|
|
internal static class WpfHelper
|
|||
|
|
{
|
|||
|
|
internal static double PixelsPerDip(this Visual visual)
|
|||
|
|
=> VisualTreeHelper.GetDpi(visual).DpiScaleX;
|
|||
|
|
}
|
|||
|
|
}
|