예제 #1
0
        public void Numeration()
        {
            var view = new NumerationView();
            var vm   = new NumerationVM(view);

            view.Show();
        }
예제 #2
0
        public SSSelect(NumerationVM model)
        {
            this.model = model;
            mgr        = new AcSmSheetSetMgr();
            var sheetSets = GetSheetSets().ToList();

            SheetSets  = new ObservableCollection <SheetSet>(sheetSets);
            SheetSet   = sheetSets.FirstOrDefault();
            SelectFile = new RelayCommand(SelectFileExec);
        }
예제 #3
0
        public BatchVM(NumerationVM model)
        {
            Model          = model;
            Batch          = new RelayCommand(BatchExec);
            CheckExistFile = new RelayCommand <NodeFile>(CheckExistFileExec);
            if (model.Options.Options.Batch == null)
            {
                model.Options.Options.Batch = new BatchOptions();
            }

            Options = model.Options.Options.Batch;
            batchVm = this;
        }
예제 #4
0
 public PropsVM(NumerationVM model)
 {
     Model  = model;
     Create = new RelayCommand(CreateExec);
 }