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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET