Beispiel #1
0
 private void OnNo(object sender, RoutedEventArgs e)
 {
     this.result = Dialog.Result.No;
     this.Close();
 }
Beispiel #2
0
 private void OnIgnore(object sender, RoutedEventArgs e)
 {
     this.result = Dialog.Result.Ignore;
     this.Close();
 }
Beispiel #3
0
 private void OnAbort(object sender, RoutedEventArgs e)
 {
     this.result = Dialog.Result.Abort;
     this.Close();
 }
Beispiel #4
0
 private void OnCancel(object sender, RoutedEventArgs e)
 {
     this.result = Dialog.Result.Cancel;
     this.Close();
 }
Beispiel #5
0
 private void DialogFactory_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     this.result = Dialog.Result.Cancel;
     this.Close();
 }