2 writes to SupportedPointerProperties
PresentationCore (2)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (2)
186SupportedPointerProperties = new UnsafeNativeMethods.POINTER_DEVICE_PROPERTY[propCount]; 277SupportedPointerProperties = supportedProperties.ToArray();
7 references to SupportedPointerProperties
PresentationCore (7)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (4)
188success = UnsafeNativeMethods.GetPointerDeviceProperties(Device, ref propCount, SupportedPointerProperties); 213foreach (var prop in SupportedPointerProperties) 308new Size(SupportedPointerProperties[StylusPointDescription.RequiredXIndex].logicalMax, 309SupportedPointerProperties[StylusPointDescription.RequiredYIndex].logicalMax),
System\Windows\InterOp\HwndPointerInputProvider.cs (3)
146int pointerPropertyCount = tabletDevice.DeviceInfo.SupportedPointerProperties.Length; 158tabletDevice.DeviceInfo.SupportedPointerProperties, 165int numButtons = tabletDevice.DeviceInfo.SupportedPointerProperties.Length - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex;