private static void ExecuteAcceptInput(StringInputDialog dialog) { dialog.DialogResult = true; dialog.Close(); }
private static bool CanExecuteAcceptInput(StringInputDialog x) { return(x != null && !String.IsNullOrEmpty(x.Value)); }
private static bool CanExecuteAcceptInput(StringInputDialog x) { return x != null && !String.IsNullOrEmpty(x.Value); }