Tagged Questions

4
votes
3answers
555 views

Multiple selection in a TreeView

I am using a Windows Forms TreeView control in my program. I would like to allow the user to select multiple nodes at the same level by dragging their mouse pointer around (also called a "lasso" ...
1
vote
3answers
966 views

MouseEnter/MouseLeave and mouse left button down

I'am trying to implement a click and drag selection like the one in windows explorer (the blue selection rectangle that occurs when you keep the mouse button down and you move the mouse). So ...
0
votes
1answer
618 views

Unable to select multiple items from a listbox in a Windows Phone 7 application

How can I select multiple items from the listbox in a Windows Phone 7 application? e.g listboxName.SelectedIndex = 0; listboxName.SelectedIndex = 1; listboxName.SelectedIndex = 2; The above code ...