Example #1
0
 private void btn_OK_Click(object sender, RoutedEventArgs e)
 {
     if (string.IsNullOrEmpty(Config.NUM))
     {
         MessageBox.Show("编号不能为空。");
         return;
     }
     try
     {
         if (IsModify)
         {
             dC_Service.ModifyDataConfig(Config);
         }
         else
         {
             dC_Service.InsertDataConfig(Config);
             dC_Service.InsertRealData(Config.ID);
         }
         MessageBox.Show("操作成功。");
         this.DialogResult = true;
     }
     catch (Exception ex)
     {
         MessageBox.Show("操作失败。" + ex.Message);
     }
 }