예제 #1
0
파일: BaseForm.cs 프로젝트: lhxon/Depositor
 /// <summary>
 /// 保存按钮下的事件响应
 /// </summary>
 protected virtual void SaveButtonCall()
 {
     if (IsSavedOK == true)
     {
         IMessageBox.ShowInformationOK("保存成功!");
     }
     else
     {
         IMessageBox.ShowWarning("保存失败");
     }
 }