Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

There are a few solutions here for Closeable tabs but they all depend on the owner of the collection to provide the closing functionality.

I thought perhaps it would be possible by creating a Custom TabControl and TabItem that this could be done in the CodeBehind.

The idea would be to somehow alert the TabControl from the TabItem that the close button has been pressed (perhaps with a bubbling event or something, please suggest) and then remove that particular items wrapped in that TabItem from the ItemsSource.

Problem is I'm not sure how or even if this is possible. Can you somehow remove items from a collection set as ItemsSource in a TabControl? Could we perhaps set a new DP sow we have full control over the Collection and just set that as ItemsSource in Code Behind.

Anyone done this or has any ideas hwo to do this. Is it even possible at all?

share|improve this question

1 Answer

Even if that's technically possible, I'd advise sticking to M-V-VM. Let the owner of the collection i.e. the ViewModel control adding/deleting items from the collection. Let the View be thin and sync with the VM's collection via data-binding. This keeps the Views from getting complex and eliminates the GUI which is a deterrent to testability.

You should find that as the path of least WPF resistance.

share|improve this answer
See Josh Smith's MVVM MSDN article for an illustration of how closeable tabs can be implemented using MVVM. – Gishu May 27 '11 at 14:24
Well some you could see this as a problem for the GUI to handle and not the ViewModel. It is about presenting data so I don't see it necceserily breaking MVVM, like how you can have an expander and such. But of course that doesn't effect behind the scenes collections. – Ingó Vals May 27 '11 at 14:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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