Aracılığıyla paylaş


DynamicRenderer.RootVisual Özellik

Tanım

için kök görseli DynamicRendereralır.

public:
 property System::Windows::Media::Visual ^ RootVisual { System::Windows::Media::Visual ^ get(); };
public System.Windows.Media.Visual RootVisual { get; }
member this.RootVisual : System.Windows.Media.Visual
Public ReadOnly Property RootVisual As Visual

Özellik Değeri

için DynamicRendererkökVisual.

Örnekler

Aşağıdaki örnekte, öğesinin DynamicRenderer nasıl oluşturulacağı ve öğesine nasıl ekleneceği RootVisual gösterilmektedir InkPresenter. Mürekkep oluşturmayı dinamik olarak sağlayan bir denetim oluşturmak için bkz. Mürekkep Girişi Denetimi Oluşturma.

// 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

kullandığınızda DynamicRendereryöntemini kullanarak AttachVisuals özelliğini 'e InkPresenter eklemeniz RootVisual gerekir.

Şunlara uygulanır