Bagikan melalui


InkCanvas.SelectionMoved Kejadian

Definisi

Terjadi setelah pengguna memindahkan pilihan goresan dan/atau elemen.

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

Jenis Acara

Contoh

Contoh berikut membatalkan pilihan item pada setelah InkCanvas pengguna memindahkannya.

// Unselect the items on the InkCanvas once the user has moved them.
void inkCanvas1_SelectionMoved(object sender, EventArgs e)
{
    inkCanvas1.Select(null, null);
}
' Unselect the items on the InkCanvas once the user has moved them.
Private Sub inkCanvas1_SelectionMoved(ByVal sender As Object, ByVal e As EventArgs)

    inkCanvas1.Select(Nothing, Nothing)

End Sub

Keterangan

Peristiwa ini terjadi setelah pemilihan goresan dan/atau elemen dipindahkan, tetapi sebelum data stroke atau elemen diperbarui untuk merekam posisi barunya. Tambahkan penanganan aktivitas ke SelectionMoving acara.

Berlaku untuk

Lihat juga