I'm looking for an INotifyCollectionChanged implementation of Stack and Queue. I could roll my own but I don't want to reinvent the wheel.
|
feedback
|
|
With Stacks and Queues (almost by definition) you only have access to the top of the stack or head of the queue. It's what differentiates them from a To answer though you could write your own, I would do it by deriving from You might also be saying that you simply want to bind or be notified when the one item you are supposed to have access to changes. You would create your own class again, derived from Stack or Queue, and fire the CollectionChanged event manually when:
| |||||||
feedback
|
|
I run into the same issue and want to share my solution to others. Hope this is helpful to someone.
| |||
|
feedback
|