UIElement.StylusPlugIns Özellik

Tanım

Bu öğeyle ilişkili tüm ekran kalemi eklentisi (özelleştirme) nesnelerinin bir koleksiyonunu alır.

protected:
 property System::Windows::Input::StylusPlugIns::StylusPlugInCollection ^ StylusPlugIns { System::Windows::Input::StylusPlugIns::StylusPlugInCollection ^ get(); };
protected System.Windows.Input.StylusPlugIns.StylusPlugInCollection StylusPlugIns { get; }
member this.StylusPlugIns : System.Windows.Input.StylusPlugIns.StylusPlugInCollection
Protected ReadOnly Property StylusPlugIns As StylusPlugInCollection

Özellik Değeri

StylusPlugInCollection

Özel bir koleksiyon olarak ekran kalemi eklentileri koleksiyonu.

Örnekler

Aşağıdaki örnek bir DynamicRenderer örnek oluşturur ve özel mürekkep işleme denetimi için koleksiyona StylusPlugIns ekler.

// 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);
' Create a DrawingAttributes to use for the 
' DynamicRenderer.
Dim inkDA As 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
Dim dynamicRenderer1 As New DynamicRenderer()
dynamicRenderer1.DrawingAttributes = inkDA

Me.StylusPlugIns.Add(dynamicRenderer1)
inkPresenter1.AttachVisuals(dynamicRenderer1.RootVisual, dynamicRenderer1.DrawingAttributes)

Açıklamalar

Bu koleksiyonu dolduran bir denetime örnek olarak verilmiştir InkCanvas. InkCanvasDynamicRenderer, ekran kalemi girişiyle etkileşim kurmasını ve ekran kalemi temelli olaylara yanıt olarak benzersiz işlemeyi üretmesini sağlayan DynamicRenderer bir koleksiyon öğesi olarak ekler.

Ekran kalemi girişini alabilen ve yorumlayabilen özel eklentiler oluşturma hakkında bilgi için bkz. Ekran Kaleminden Girişi Kesme.

Şunlara uygulanır

Ayrıca bkz.