InkCanvas.SelectionResized 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當使用者調整筆劃及/或項目的選取範圍大小時,就會發生。
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 事件。