private void AddEntryExcelC()
 {
     if (string.IsNullOrEmpty(AddExcelCValue.Val1))
     {
         MessageBoxService.ShowMessage("Value 1 must not be empty!", "Error", MessageButton.OK, MessageIcon.Information);
     }
     else
     {
         CloseDialogFunc.Invoke(1);
     }
 }
示例#2
0
 private void CloseDialog()
 {
     CloseDialogFunc.Invoke(0);
 }
示例#3
0
 private void EditEntryExcelC()
 {
     CloseDialogFunc.Invoke(1);
 }