Assuming the name of your list view is ListView1 and name of textBox is TextBox1
Code will be as follows
To get the data in first column
TextBox1 = ListView1.SelectedItem
To get the data in Second column
TextBox1 = ListView1.SelectedItem.ListSubItems(1)
In your as visible in picture...