Exemple #1
0
        static public void Execute(IHost host, IVocabularyWindow owner, Theme theme)
        {
            ICommand command = new LanguagesDialogCommand(host, owner, theme);

            command.Execute(owner);
        }
        static public void Execute(IVocabularyWindow owner, Theme theme)
        {
            ICommand command = new ColumnsDialogCommand(owner, theme);

            command.Execute(owner);
        }
Exemple #3
0
 public LanguagesDialogCommand(IHost host, IVocabularyWindow owner, Theme theme)
 {
     this.host  = host;
     this.owner = owner;
     this.theme = theme;
 }
 public ColumnsDialogCommand(IVocabularyWindow owner, Theme theme)
 {
     this.owner = owner;
     this.theme = theme;
 }