10 references to SafeSystemMetrics
PresentationCore (9)
System\Windows\Input\InputMethod.cs (1)
1781private 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)
122Size mouseDoubleTapDefault = new Size(Math.Max(1, MS.Win32.SafeSystemMetrics.DoubleClickDeltaX / 2), 123Math.Max(1, MS.Win32.SafeSystemMetrics.DoubleClickDeltaY / 2));
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (4)
271Size mouseDragDefault = new Size(Math.Max(1, SafeSystemMetrics.DragDeltaX / 2), 272Math.Max(1, SafeSystemMetrics.DragDeltaY / 2)); 273Size mouseDoubleTapDefault = new Size(Math.Max(1, SafeSystemMetrics.DoubleClickDeltaX / 2), 274Math.Max(1, SafeSystemMetrics.DoubleClickDeltaY / 2));
PresentationFramework (1)
System\windows\Documents\TextEditor.cs (1)
2008private static bool _immEnabled = SafeSystemMetrics.IsImmEnabled ;