1 instantiation of PointerTabletDevice
PresentationCore (1)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceCollection.cs (1)
112PointerTabletDevice tablet = new PointerTabletDevice(ptdi);
14 references to PointerTabletDevice
PresentationCore (14)
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (3)
89private PointerTabletDevice _tabletDevice; 105internal PointerStylusDevice(PointerTabletDevice tabletDevice, UnsafeNativeMethods.POINTER_DEVICE_CURSOR_INFO cursorInfo) 397internal PointerTabletDevice PointerTabletDevice
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceCollection.cs (9)
21private Dictionary<IntPtr, PointerTabletDevice> _tabletDeviceMap = new Dictionary<IntPtr, PointerTabletDevice>(); 38internal PointerTabletDevice GetByDeviceId(IntPtr deviceId) 40PointerTabletDevice tablet = null; 56foreach (var tablet in _tabletDeviceMap.Values) 75Dictionary<IntPtr, PointerTabletDevice> oldTablets = _tabletDeviceMap; 77_tabletDeviceMap = new Dictionary<IntPtr, PointerTabletDevice>(); 112PointerTabletDevice tablet = new PointerTabletDevice(ptdi); 138foreach (var oldTablet in oldTablets.Values)
System\Windows\InterOp\HwndPointerInputProvider.cs (2)
47private PointerTabletDevice _currentTabletDevice; 131private int[] GenerateRawStylusData(PointerData pointerData, PointerTabletDevice tabletDevice)