BetterExplorer.ConditionalSelectForm.Open C# (CSharp) Method

Open() public static method

public static Open ( ShellView ShellListView ) : void
ShellListView ShellView
return void
		public static void Open(ShellView ShellListView) {
			var csf = new ConditionalSelectForm();
			csf.ShowDialog();
			if (!csf.CancelAction) {
				csf.ConditionallySelectFiles(csf.csd, ShellListView);
			}
		}