-
Notifications
You must be signed in to change notification settings - Fork 3.5k
implement TreeDataGrid #3877
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
implement TreeDataGrid #3877
Conversation
|
Just replying back to the questions.
I think we might need to pivot on the implementation a bit here. It would probably be better to look more at implementing it view the GridView similar to how the WPF base ListView control works. This likely will be a more complicated path, but I think it will be the better approach. |
db98e8b to
2cb2f69
Compare
|
Thanks a lot for suggesting The only problem is the |
|
Hi. The toggle button is now automatically added to the first column. I commented out the assignment of |
|
I think we can remove this comment after merging #3875 |
Keboo
left a comment
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.
This is looking really good! thank you!
|
Done |
|
Is it possible to test this new control? I took the last version of the code but it's not in the demo app. thnak you. |
|
Yes you can checkout this branch and test it |
strange, I download your branch and when I run the demo, I don't see the new control. Perhaps it's not integrated in the demo application? thank you. |
|
So you
|
Yes. I open it in Visual Studio. :( Will make a new try. |
Adds a margin to the TreeListView's content presenter to improve spacing.
Adds a wait to ensure that the click event is only invoked a single time after a click.
6d2161b to
5a53e17
Compare
Wraps the clear button click and assertion in a retry block to address potential timing issues in UI tests.

Hi Keboo.
According to talk in the discord about adding columns to
TreeListViewI created this pull request. This is WIP and most of the task is done just the styles is left (light/dark theme, ...). for using this just run demo app and go to trees -> multi select tree view I have couple of questions:GridViewRowPresenterbut I can't removeinternal:TreeListViewContentPresenterbecause no children is shown. so the final code is as below. Is there better solution for this?TreeListViewCellif it's not necessary to show gridlines we can remove this.TreeDataGrid?feel free to mention me if there is any error. here is my view
