1 instantiation of PointerTabletDevice
PresentationCore (1)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceCollection.cs (1)
118PointerTabletDevice tablet = new PointerTabletDevice(ptdi);
14 references to PointerTabletDevice
PresentationCore (14)
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (3)
98private PointerTabletDevice _tabletDevice; 114internal PointerStylusDevice(PointerTabletDevice tabletDevice, UnsafeNativeMethods.POINTER_DEVICE_CURSOR_INFO cursorInfo) 422internal PointerTabletDevice PointerTabletDevice
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceCollection.cs (9)
27private Dictionary<IntPtr, PointerTabletDevice> _tabletDeviceMap = new Dictionary<IntPtr, PointerTabletDevice>(); 44internal PointerTabletDevice GetByDeviceId(IntPtr deviceId) 46PointerTabletDevice tablet = null; 62foreach (var tablet in _tabletDeviceMap.Values) 81Dictionary<IntPtr, PointerTabletDevice> oldTablets = _tabletDeviceMap; 83_tabletDeviceMap = new Dictionary<IntPtr, PointerTabletDevice>(); 118PointerTabletDevice tablet = new PointerTabletDevice(ptdi); 144foreach (var oldTablet in oldTablets.Values)
System\Windows\InterOp\HwndPointerInputProvider.cs (2)
54private PointerTabletDevice _currentTabletDevice; 141private int[] GenerateRawStylusData(PointerData pointerData, PointerTabletDevice tabletDevice)