예제 #1
0
        internal BaseTab()
        {
            InitializeComponent();

            if (DesignerProperties.GetIsInDesignMode(this))
            {
                DataContext = new BaseTabDesignModel();
            }
            else
            {
                DataContext = new BaseTabViewModel();
            }

            baseDialogController = new DataTableLoadingController();
        }
예제 #2
0
 public void CreateTab(BaseTabViewModel tab)
 {
     OnTabCreation(this, tab);
 }
예제 #3
0
 public CopyCommand( BaseTabViewModel vm)
 { 
   _vm = vm;
 }