10 references to SafeSystemMetrics
PresentationCore (9)
System\Windows\Input\InputMethod.cs (1)
1781
private static bool _immEnabled =
SafeSystemMetrics
.IsImmEnabled ;
System\Windows\Input\MouseDevice.cs (2)
38
_doubleClickDeltaX =
SafeSystemMetrics
.DoubleClickDeltaX;
39
_doubleClickDeltaY =
SafeSystemMetrics
.DoubleClickDeltaY;
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (2)
122
Size mouseDoubleTapDefault = new Size(Math.Max(1, MS.Win32.
SafeSystemMetrics
.DoubleClickDeltaX / 2),
123
Math.Max(1, MS.Win32.
SafeSystemMetrics
.DoubleClickDeltaY / 2));
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (4)
271
Size mouseDragDefault = new Size(Math.Max(1,
SafeSystemMetrics
.DragDeltaX / 2),
272
Math.Max(1,
SafeSystemMetrics
.DragDeltaY / 2));
273
Size mouseDoubleTapDefault = new Size(Math.Max(1,
SafeSystemMetrics
.DoubleClickDeltaX / 2),
274
Math.Max(1,
SafeSystemMetrics
.DoubleClickDeltaY / 2));
PresentationFramework (1)
System\windows\Documents\TextEditor.cs (1)
2008
private static bool _immEnabled =
SafeSystemMetrics
.IsImmEnabled ;