UIElement.StylusPlugIns Property
Gets a collection of all stylus plug-in (customization) objects associated with this element.
Assembly: PresentationCore (in PresentationCore.dll)
Property Value
Type: System.Windows.Input.StylusPlugIns.StylusPlugInCollectionThe collection of stylus plug-ins, as a specialized collection.
An example of a control that populates this collection is InkCanvas. InkCanvas adds the DynamicRenderer as a collection item, which enables the DynamicRenderer to interact with stylus input and produce the unique rendering in response to stylus driven events.
For information on creating custom plug-ins that can receive and interpret stylus input, see Intercepting Input from the Stylus.
The following example creates a DynamicRenderer instance and adds it to the StylusPlugIns collection for a custom ink handling control.
// Create a DrawingAttributes to use for the // DynamicRenderer. DrawingAttributes inkDA = new DrawingAttributes(); inkDA.Width = 5; inkDA.Height = 5; inkDA.Color = Colors.Purple; // Add a dynamic renderer plugin that // draws ink as it "flows" from the stylus DynamicRenderer dynamicRenderer1 = new DynamicRenderer(); dynamicRenderer1.DrawingAttributes = inkDA; this.StylusPlugIns.Add(dynamicRenderer1); inkPresenter1.AttachVisuals(dynamicRenderer1.RootVisual, dynamicRenderer1.DrawingAttributes);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.