Bagikan melalui


TreeViewHitTestInfo.Location Properti

Definisi

Mendapatkan lokasi tes hit pada TreeView kontrol, sehubungan dengan dan node yang dikandungnya TreeView .

public:
 property System::Windows::Forms::TreeViewHitTestLocations Location { System::Windows::Forms::TreeViewHitTestLocations get(); };
public System.Windows.Forms.TreeViewHitTestLocations Location { get; }
member this.Location : System.Windows.Forms.TreeViewHitTestLocations
Public ReadOnly Property Location As TreeViewHitTestLocations

Nilai Properti

Salah TreeViewHitTestLocations satu nilai.

Contoh

Contoh kode berikut menunjukkan cara menggunakan Location properti . Untuk menjalankan contoh ini, tempelkan kode berikut ke dalam Formulir Windows yang berisi TreeView kontrol bernama treeView1, dan isi TreeView dengan item. Pastikan bahwa treeview1 dan MouseDown peristiwa untuk formulir dikaitkan dengan HandleMouseDown metode .

void HandleMouseDown(object sender, MouseEventArgs e)
{
    TreeViewHitTestInfo info = treeView1.HitTest(e.X, e.Y);
    if (info != null)
        MessageBox.Show("Hit the " + info.Location.ToString());
}
Private Sub HandleMouseDown(ByVal sender As Object, ByVal e As MouseEventArgs) _
    Handles Me.MouseDown, treeView1.MouseDown
    Dim info As TreeViewHitTestInfo = treeView1.HitTest(e.X, e.Y)
    If (info IsNot Nothing) Then
        MessageBox.Show("Hit the " + info.Location.ToString())
    End If

End Sub

Berlaku untuk