I'm using Prism with MEF and i want to dynamically add tab items to tab control w/o violating Prism - MVVM - MEF rules. can somebody show me in simple steps/example how to do this
|
A TabControl can be bound to a collection just like a number of other controls. Here's an example of a tabcontrol I have in a chat messaging program.
So in this example I have a collection of a custom datatype 'ChatRoom' called 'Rooms' which has properties on it like the RoomName. Whenever a user creates a new room it is added to the Rooms collection, and a new tabitem is created. So in my viewModel:
|
|||
|
|
|
First of all I am not saying my approach is the best of all possible approaches... but I just want to share it because I think it's cool :) You can have TabControl region... so you can simply navigate to that region with some view :) ...what happens? When you navigate to TabControl region with some view... that view will be added as new TabItem. Of course there are some things You have to do first.
Now it should work :) of course we are talking about Navigation so you should provide ViewModels with |
|||
|
|
|
You need a region adapter for a TabControl. I made this for Ribbon Control so you can inspire from it :
int XAML : to add a tab you need this :
RegionNames is just a class in my infrastructe project :
Hope that helps |
|||
|
|
