Hi Alex Peachey,
You are correct - we have yet to implement this functionality. However, for the time being you can use
RadDropDownMenu and associate it with the listbox in your code. You have to subscribe to the
MouseDown event of the control and add the following code to the handler:
void radListBox1_MouseDown(object sender, MouseEventArgs e) |
{ |
if (e.Button == MouseButtons.Right) |
{ |
radDropDownMenu1.Show((Control)sender, e.X, e.Y); |
} |
} |
This will cause
RadDropDownMenu to appear every time when the listbox is clicked with the right mouse button.
If you have any additional questions, please do not hesitate to contact us again.
Greetings,
Georgi
the Telerik team