InkCanvas.DefaultDrawingAttributesReplaced Evento

Definição

Ocorre quando a propriedade DefaultDrawingAttributes é substituída.

public:
 event System::Windows::Ink::DrawingAttributesReplacedEventHandler ^ DefaultDrawingAttributesReplaced;
public event System.Windows.Ink.DrawingAttributesReplacedEventHandler DefaultDrawingAttributesReplaced;
member this.DefaultDrawingAttributesReplaced : System.Windows.Ink.DrawingAttributesReplacedEventHandler 
Public Custom Event DefaultDrawingAttributesReplaced As DrawingAttributesReplacedEventHandler 
Public Event DefaultDrawingAttributesReplaced As DrawingAttributesReplacedEventHandler 

Tipo de evento

DrawingAttributesReplacedEventHandler

Exemplos

O exemplo a seguir verifica o valor da IsHighlighter propriedade do novo DrawingAttributes objeto.

void inkCanvas1_DefaultDrawingAttributesReplaced(object sender, DrawingAttributesReplacedEventArgs e)
{
    if (e.NewDrawingAttributes.IsHighlighter)
    {
        this.Title = "Now using a highlighter.";
    }
    else
    {
        this.Title = "Now using a pen.";
    }
}
Private Sub inkCanvas1_DefaultDrawingAttributesReplaced(ByVal sender As Object, _
                            ByVal e As DrawingAttributesReplacedEventArgs)

    If (e.NewDrawingAttributes.IsHighlighter) Then

        Me.Title = "Now using a highlighter."

    Else

        Me.Title = "Now using a pen."

    End If

End Sub

Aplica-se a