public PropertiesViewModel(TabViewModel tab, IEventAggregator eventAggregator)
            : base(eventAggregator)
        {
            this.tab = tab;

            EditName = tab.DisplayName;
            DisplayName = String.Format("'{0}' properties", tab.DisplayName);
        }
Example #2
0
        public PropertiesViewModel(TabViewModel tab, IEventAggregator eventAggregator)
            : base(eventAggregator)
        {
            this.tab = tab;

            EditName    = tab.DisplayName;
            DisplayName = String.Format("'{0}' properties", tab.DisplayName);
        }
 public ShowPropertiesMessage(TabViewModel tab)
 {
     Tab = tab;
 }
Example #4
0
 public CloseTabMessage(TabViewModel tab, bool everythingElse)
 {
     EverythingElse = everythingElse;
     Tab = tab;
 }