TreeListView always send RightMouseButton on MouseClick
ObjectListView - ListView on caffeine, guarana and steroids
Brought to you by:
grammarian
Hello,
I see this behavior in downloaded 2.8 examples for TreeListView - just add new event to any Mouse* handlers:
private void treeListView_MouseClick(object sender, MouseEventArgs e) {
System.Diagnostics.Debug.WriteLine(e.Button.ToString());
}
Then, when clicking by Left mouse button you see "Right" in debug console.
Isn't it should be "Left"?
(I just want to make tree expanding by single click)
Listen for
CellClickedevent instead.