Shared interfaces for BusinessListBase<T, C> and BusinessBindingListBase<T, C> #3534
Unanswered
michaelcsikos
asked this question in
Questions
Replies: 1 comment
-
If anyone comes up with a good solution I'd love to see it. Many years ago (2007?) I remember trying to reconcile the two collection types and never came up with something that would work in Windows Forms, WPF, and (at the time) Silverlight. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a
ViewModelListBase
class which I want to work with eitherBusinessListBase<T, C>
orBusinessBindingListBase<T, C>
. I found it difficult to find the right common interfaces to do simple things likeAddNew()
. Currently, I have the following:BusinessBindingListBase<T, C>
doesn't implementIBusinessListBase<C>
.IEditableCollection
wasn't much help.BusinessListBase<T, C>
implementsIObservableBindingList
which sounded promising, but it's got nothing to do withIBindingList
whichBusinessBindingListBase<T, C>
implements.Beta Was this translation helpful? Give feedback.
All reactions