2 instantiations of WispTabletDevice
PresentationCore (2)
System\Windows\Input\Stylus\Wisp\WispTabletDeviceCollection.cs (2)
334tablet = new TabletDevice(new WispTabletDevice(tabletdevices[iTablet], penThread)); 468AddTablet(tabletIndex, new TabletDevice(new WispTabletDevice(tabletInfo, penThread)));
28 references to WispTabletDevice
PresentationCore (28)
System\Windows\Input\Stylus\Wisp\PenContexts.cs (1)
212PenContext newContext = _stylusLogic.TabletDevices[(int)index].As<WispTabletDevice>().CreateContext(_inputSource.Handle, this);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (13)
290var tablet = report.StylusDevice.TabletDevice.As<WispTabletDevice>(); 312WispTabletDevice tabletDevice = null; 321tabletDevice = rawStylusInputReport?.StylusDevice?.TabletDevice?.As<WispTabletDevice>(); 942WispTabletDevice tabletDevice = stylusDevice.TabletDevice?.As<WispTabletDevice>(); 1067WispTabletDevice tabletDevice = stylusDevice.TabletDevice.As<WispTabletDevice>(); 1361WispTabletDevice tabletDevice = stylusArgs?.StylusDeviceImpl?.TabletDevice.As<WispTabletDevice>(); 2622tablet.As<WispTabletDevice>().InvalidateSizeDeltas(); // Will be recalc'd on next stylus down. 3491penThread = tabletDeviceCollection[0].As<WispTabletDevice>().PenThread; 3581tablet.As<WispTabletDevice>()?.UpdateScreenMeasurements();
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (2)
23internal WispStylusDevice(WispTabletDevice tabletDevice, string sName, int id, bool fInverted, StylusButtonCollection stylusButtonCollection) 1951WispTabletDevice _tabletDevice;
System\Windows\Input\Stylus\Wisp\WispTabletDeviceCollection.cs (12)
262PenThread penThread = _tablets.Length > 0 ? _tablets[0].As<WispTabletDevice>().PenThread : 410PenThread penThread = _tablets.Length > 0 ? _tablets[0].As<WispTabletDevice>().PenThread : 562WispTabletDevice removeTablet = _tablets[index].As<WispTabletDevice>(); 594WispTabletDevice tablet = _tablets[iTablet].As<WispTabletDevice>(); 612WispTabletDevice removedTablet = _tablets[iTablet].TabletDeviceImpl.As<WispTabletDevice>(); 641WispTabletDevice tabletDevice = tablet.TabletDeviceImpl.As<WispTabletDevice>(); 667ctxs[i++] = tablet.As<WispTabletDevice>().CreateContext(hwnd, contexts); 677ctxs[i++] = tablet.As<WispTabletDevice>().CreateContext(hwnd, contexts);