I would like to add a double click mouse event to a listbox. When I double click an item I\'d like to get the specific item and assign a method. I have been searching for t
Simple sample to send selected item on a listbox:
private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e) { string test = listBox1.SelectedItem.ToString(); }