1 instantiation of PointerTabletDevice
PresentationCore (1)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceCollection.cs (1)
113PointerTabletDevice tablet = new PointerTabletDevice(ptdi);
14 references to PointerTabletDevice
PresentationCore (14)
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (3)
90private PointerTabletDevice _tabletDevice; 106internal PointerStylusDevice(PointerTabletDevice tabletDevice, UnsafeNativeMethods.POINTER_DEVICE_CURSOR_INFO cursorInfo) 398internal PointerTabletDevice PointerTabletDevice
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceCollection.cs (9)
22private Dictionary<IntPtr, PointerTabletDevice> _tabletDeviceMap = new Dictionary<IntPtr, PointerTabletDevice>(); 39internal PointerTabletDevice GetByDeviceId(IntPtr deviceId) 41PointerTabletDevice tablet = null; 57foreach (var tablet in _tabletDeviceMap.Values) 76Dictionary<IntPtr, PointerTabletDevice> oldTablets = _tabletDeviceMap; 78_tabletDeviceMap = new Dictionary<IntPtr, PointerTabletDevice>(); 113PointerTabletDevice tablet = new PointerTabletDevice(ptdi); 139foreach (var oldTablet in oldTablets.Values)
System\Windows\InterOp\HwndPointerInputProvider.cs (2)
48private PointerTabletDevice _currentTabletDevice; 132private int[] GenerateRawStylusData(PointerData pointerData, PointerTabletDevice tabletDevice)