-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add proposal for TreeView SelectionChanged event #80
base: master
Are you sure you want to change the base?
Conversation
Windows.Foundation.Collections.IVector<Object> AddedItems{ get; }; | ||
Windows.Foundation.Collections.IVector<Object> RemovedItems{ get; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The SelectionModel class, in addition to SelectedItems
also has SelectedItem
. Maybe we could add that here too since we support single selection. On the other hand, we wouldn't gain much by adding that as you can also just get the item at index 0.
Closing this PR for now because of lack of interest. |
How is interest measured? |
I'm a bit surprised there has been no progress here. @ranjeshj @MikeHillberg FYI. |
Actually this was probably poorly written, sorry about that. |
Adding @predavid-zz to see if she can help with the spec. @japf Thanks for adding the API to preview. |
Proposal for the
SelectionChanged
event that we added recently as preview in the WinUI repo: microsoft/microsoft-ui-xaml#2063