33 references to StylusPointProperty
PresentationCore (33)
MS\Internal\Ink\InkSerializedFormat\InkSerializer.cs (2)
1540return new StylusPointPropertyInfo( new StylusPointProperty(guid, StylusPointPropertyIds.IsKnownButton(guid)), 1645StylusPointProperty buttonProperty = new StylusPointProperty(buttonguids[i], true);
System\Windows\Input\Stylus\Common\StylusButton.cs (1)
47return (StylusButtonState)stylusPoints[stylusPoints.Count - 1].GetPropertyValue(new StylusPointProperty(Guid, true));
System\Windows\Input\Stylus\Common\StylusPointProperties.cs (22)
15new StylusPointProperty( StylusPointPropertyIds.X, false); 21new StylusPointProperty( StylusPointPropertyIds.Y, false); 27new StylusPointProperty( StylusPointPropertyIds.Z, false); 33new StylusPointProperty(StylusPointPropertyIds.Width, false); 39new StylusPointProperty(StylusPointPropertyIds.Height, false); 45new StylusPointProperty(StylusPointPropertyIds.SystemTouch, false); 51new StylusPointProperty( StylusPointPropertyIds.PacketStatus, false); 57new StylusPointProperty(StylusPointPropertyIds.SerialNumber, false); 63new StylusPointProperty( StylusPointPropertyIds.NormalPressure, false); 69new StylusPointProperty( StylusPointPropertyIds.TangentPressure, false); 75new StylusPointProperty( StylusPointPropertyIds.ButtonPressure, false); 81new StylusPointProperty( StylusPointPropertyIds.XTiltOrientation, false); 87new StylusPointProperty( StylusPointPropertyIds.YTiltOrientation, false); 93new StylusPointProperty( StylusPointPropertyIds.AzimuthOrientation, false); 99new StylusPointProperty( StylusPointPropertyIds.AltitudeOrientation, false); 105new StylusPointProperty( StylusPointPropertyIds.TwistOrientation, false); 111new StylusPointProperty( StylusPointPropertyIds.PitchRotation, false); 117new StylusPointProperty(StylusPointPropertyIds.RollRotation, false); 123new StylusPointProperty(StylusPointPropertyIds.YawRotation, false); 129new StylusPointProperty(StylusPointPropertyIds.TipButton, true); 135new StylusPointProperty(StylusPointPropertyIds.BarrelButton, true); 141new StylusPointProperty(StylusPointPropertyIds.SecondaryTipButton, true);
System\Windows\Input\Stylus\Common\StylusPointPropertyInfoDefaults.cs (2)
233new StylusPointPropertyInfo(new StylusPointProperty(Guid.NewGuid(), false), 243new StylusPointPropertyInfo(new StylusPointProperty(Guid.NewGuid(), true),
System\Windows\Input\Stylus\Pointer\PointerStylusPointPropertyInfoHelper.cs (1)
65StylusPointProperty stylusProp = new StylusPointProperty(propGuid, StylusPointPropertyIds.IsKnownButton(propGuid));
System\Windows\Input\Stylus\Wisp\PenContext.cs (2)
128StylusPointPropertyInfo propertyInfo = new StylusPointPropertyInfo(new StylusPointProperty(guid, false), min, max, (StylusPointPropertyUnit)units, res); 143StylusPointProperty buttonProperty = new StylusPointProperty(buttonGuid, true);
System\Windows\Input\Stylus\Wisp\PenThreadWorker.cs (2)
918StylusPointProperty property = new StylusPointProperty(guid, false); 927StylusPointProperty buttonProperty = new StylusPointProperty(buttonGuid, true);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2906(StylusButtonState)stylusPoint.GetPropertyValue(new StylusPointProperty(button.Guid, true));