bodong1987 / Avalonia.PropertyGrid

A property edit control in Avalonia like DevExpress's PropertyGridControl.
https://www.cnblogs.com/bodong
MIT License
184 stars 19 forks source link

Regular Lists and Dictionaries #1

Closed brmassa closed 1 year ago

brmassa commented 1 year ago

Congrats! Great library.

It's still missing the ability to display regular Lists and Dictionaries, besides BindingList.

bodong1987 commented 1 year ago

Because I need to use some internal change notification events of BindingList to implement some functions, the standard List and Dictionary may not have these notifications. for example: event ListChangedEventHandler ListChanged;

appel1 commented 1 year ago

What about ObservableCollection?