Interaction logic for ConditionalSelectForm.xaml
Inheritance: System.Windows.Window
		public static void Open(ShellView ShellListView) {
			var csf = new ConditionalSelectForm();
			csf.ShowDialog();
			if (!csf.CancelAction) {
				csf.ConditionallySelectFiles(csf.csd, ShellListView);
			}
		}
        public static void Open(ShellView ShellListView)
        {
            var csf = new ConditionalSelectForm();

            csf.ShowDialog();
            if (!csf.CancelAction)
            {
                csf.ConditionallySelectFiles(csf.csd, ShellListView);
            }
        }
Exemplo n.º 3
0
        private void btnCondSel_Click(object sender, RoutedEventArgs e)
        {
            btnCondSel.IsDropDownOpen = false;
            Explorer.ExplorerSetFocus();
            ConditionalSelectForm csf = new ConditionalSelectForm();
            csf.ShowDialog();
            if (csf.CancelAction == false)
            {
                ConditionallySelectFiles(csf.csd);

            }
            //this.Activate();
            Explorer.ExplorerSetFocus();
        }