/ Published in: C#
Expand |
Embed | Plain Text
private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e) { if(listBox1.SelectedIndex != -1) { var rect = listBox1.GetItemRectangle(listBox1.SelectedIndex); if(rect.Contains(e.Location)) { // process item data here } } }
You need to login to post a comment.
