You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add enum SelectionMode to List that enables the user to specify double-click list item selection option. We might want to put the SelectOnMouseUp setting into that enum as well. Then we have:
public enum SelectionMode
{
MouseDown, // default
MouseUp,
Click, // same as MouseUp
DoubleClick
}
The text was updated successfully, but these errors were encountered:
Add enum SelectionMode to List that enables the user to specify double-click list item selection option. We might want to put the SelectOnMouseUp setting into that enum as well. Then we have:
The text was updated successfully, but these errors were encountered: