InkCanvas.DefaultDrawingAttributesReplaced Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the DefaultDrawingAttributes property is replaced.
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
Event Type
Examples
The following example checks the value of the IsHighlighter property of the new DrawingAttributes object.
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
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.