8 references to DpiScale
PresentationCore (8)
MS\Internal\DpiScale2.cs (1)
33
: this(new
DpiScale
(dpiScaleX, dpiScaleY))
System\Windows\DpiChangedEventArgs.cs (2)
50
OldDpi = new
DpiScale
(oldDpiX / DpiUtil.DefaultPixelsPerInch, oldDpiY / DpiUtil.DefaultPixelsPerInch);
51
NewDpi = new
DpiScale
(newDpiX / DpiUtil.DefaultPixelsPerInch, newDpiY / DpiUtil.DefaultPixelsPerInch);
System\Windows\InterOp\HwndTarget.cs (1)
2322
DpiScale newDpiScale = new
DpiScale
(UIElement.DpiScaleXValues[dpiFlags.Index], UIElement.DpiScaleYValues[dpiFlags.Index]);
System\Windows\Media\Visual.cs (3)
4713
dpi = new
DpiScale
(UIElement.DpiScaleXValues[0], UIElement.DpiScaleYValues[0]);
4721
dpi = new
DpiScale
(UIElement.DpiScaleXValues[index], UIElement.DpiScaleYValues[index]);
4727
dpi = new
DpiScale
(UIElement.DpiScaleXValues[actualIndex], UIElement.DpiScaleYValues[actualIndex]);
System\Windows\UIElement.cs (1)
1171
return new
DpiScale
(_dpiScaleX, _dpiScaleY);