InkCanvas.DefaultDrawingAttributesReplaced 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DefaultDrawingAttributes 속성이 바뀔 때 발생합니다.
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
이벤트 유형
예제
다음 예제에서는 새 DrawingAttributes 개체의 IsHighlighter 속성 값을 확인합니다.
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