Private Sub ListView1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListView1.SelectedIndexChanged
' Get the selected item
Dim item As ListViewItem = ListView1.SelectedItem
' Show the information in the textbox
TextBox1.Text = item.Text
End Sub
คำถามสอง (กำหนด default) Code (VB.NET)
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Set the text of the textbox to the value of the first item in the list view
TextBox1.Text = ListView1.Items(0).Text
End Sub
Concept มีแค่นี้ ถ้ามีการ bind data ก็ประยุกต์เอาหน่อยไม่หนีไปจากนี้
สิ่งที่ควรศึกษาคือ Controls properties, Event, Data Binding