InkCanvas.SelectionResized 事件

定义

在用户调整了所选笔画和/或元素大小时发生。

public:
 event EventHandler ^ SelectionResized;
public event EventHandler SelectionResized;
member this.SelectionResized : EventHandler 
Public Custom Event SelectionResized As EventHandler 
Public Event SelectionResized As EventHandler 

事件类型

示例

以下示例在用户重新调整所选内容的大小后取消选择 上 InkCanvas 的所有项。

void inkCanvas1_SelectionResized(object sender, EventArgs e)
{
    inkCanvas1.Select(null, null);
}
Private Sub inkCanvas1_SelectionResized(ByVal sender As Object, ByVal e As EventArgs)

    inkCanvas1.Select(Nothing, Nothing)

End Sub

注解

调整所选笔划和/或元素的大小后,将引发此事件。

如果必须在调整笔划和/或元素大小之前处理调整所选内容大小的请求,请向 SelectionResizing 事件添加事件处理程序。

适用于

另请参阅