InkPresenter.AttachVisuals(Visual, DrawingAttributes) Método

Definición

Asocia el objeto visual de DynamicRenderer a InkPresenter.

C#
public void AttachVisuals(System.Windows.Media.Visual visual, System.Windows.Ink.DrawingAttributes drawingAttributes);

Parámetros

visual
Visual

El objeto visual de DynamicRenderer del visualizador.

drawingAttributes
DrawingAttributes

DrawingAttributes que especifica el aspecto de la entrada de lápiz representada dinámicamente.

Excepciones

visual ya está asociado a un árbol visual.

Ejemplos

En el ejemplo siguiente se muestra cómo adjuntar el objeto visual y DrawingAttributes de un DynamicRenderer objeto a .InkPresenter

C#
// 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);

Comentarios

Adjunte el objeto visual de DynamicRenderer a para representar dinámicamente la InkPresenter entrada de lápiz en el control.

Se aplica a

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10