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