vote up 1 vote down star

I'm starting to dip my toe into WPF, and I would like to have the collections in my application work with as an ItemSource. I tried implementing INotifyCollectionChanged. I'm ok with that except that then I have to reference WindowsBase.dll in about 15 dll's.

Is there another interface that WPF can use for binding that I might already have referenced?

flag

2 Answers

vote up 4 vote down check

A good portion of WPF exists in WindowsBase.dll. There isn't much you can do with WPF without it ;-)

You may want to look into ObservableCollection(T). Again, though, that class is defined in WindowsBase.dll.

link|flag
1  
It turns out there is an alternate interface called IBindingList. Based on the link it looks like a whole lot more work than just referencing WindowsBase. wpfmentor.com/2008/12/… – Jake Pearson Jun 16 at 14:54
Wowwww... that is a ton of work for IBindingList. It makes sense though in their case, since they wanted to keep their business logic away from WPF... but still, wow. haha. Good link! – unforgiven3 Jun 16 at 15:04
vote up 0 vote down

Use an ObservableCollection<> for your ItemsSource; it fires the events for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.