public MainWindowViewModel()
        {
            OpenFileCommand    = new Base.Command(OpenFile);
            SaveFileCommand    = new Base.Command(SaveFile);
            LoadExampleCommand = new Base.Command(LoadExample);
            ExitCommand        = new Base.Command(Exit);

            BuildTestCommand   = new Base.Command(BuildTest);
            CreateClassCommand = new Base.Command(CreateClass);
            LocalizingCommand  = new Base.Command(Localizing);

            DataGridMoveUpDownCommand = new Base.Command <Key>(DataGridMoveUpDown);
        }
 public CreateClassViewModel()
 {
     CreateCommand = new Base.Command(Create);
 }