Exemplo n.º 1
0
		public override void Execute(object parameter)
		{
			OpenFromGacDialog dlg = new OpenFromGacDialog();
			dlg.Owner = MainWindow.Instance;
			if (dlg.ShowDialog() == true)
				MainWindow.Instance.OpenFiles(dlg.SelectedFileNames);
		}
Exemplo n.º 2
0
        public override void Execute(object parameter)
        {
            OpenFromGacDialog dlg = new OpenFromGacDialog();

            dlg.Owner = MainWindow.Instance;
            if (dlg.ShowDialog() == true)
            {
                MainWindow.Instance.OpenFiles(dlg.SelectedFileNames);
            }
        }
Exemplo n.º 3
0
 void OpenFromGac_Click(object sender, RoutedEventArgs e)
 {
     OpenFromGacDialog dlg = new OpenFromGacDialog();
     dlg.Owner = this;
     if (dlg.ShowDialog() == true) {
         OpenFiles(dlg.SelectedFileNames);
     }
 }