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

            EditName = tab.DisplayName;
            DisplayName = String.Format("'{0}' properties", tab.DisplayName);
        }
        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;
 }
 public CloseTabMessage(TabViewModel tab, bool everythingElse)
 {
     EverythingElse = everythingElse;
     Tab = tab;
 }