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
事件類型
範例
下列範例會 IsHighlighter 檢查新 DrawingAttributes 物件的 屬性值。
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