This question is locked. New answers and comments are not allowed.
When using the standard listbox control i use the IndexFromPoint Method to get the item at the point of the mouse click...
like...
is a there a way to do such with a RadListControl?
like...
private void listBox1_MouseDown(object sender, MouseEventArgs e)
{
int index = listBox1.IndexFromPoint(e.Location);
listBox1.SelectedIndex = index;
}