public LayoutStructureTabItem(Guid id, Guid featureId, object tabContentViewModel, IBackingStoreWriter backingStoreWriter)
 {
     BackingStoreWriter = backingStoreWriter;
     Id                  = id;
     FeatureId           = featureId;
     TabContentViewModel = tabContentViewModel;
 }
Example #2
0
 public TabItemContainer(Guid tabId, Guid featureId, ITabContentLifetimeHost tabContentLifetimeHost, IBackingStoreWriter backingStoreWriter)
 {
     TabId     = tabId;
     FeatureId = featureId;
     TabContentLifetimeHost = tabContentLifetimeHost;
     BackingStoreWriter     = backingStoreWriter;
     ViewModel = tabContentLifetimeHost.ViewModel;
     Name      = "New World";
 }