public void ReadOnlyControl()
 {
     UCApplyInfoForOne.ReadOnlyControl();
     simpleButtonClear.Visible   = false;
     simpleButtonConfirm.Visible = false;
     simpleButtonExit.Visible    = false;
 }
 private void simpleButtonClear_Click(object sender, EventArgs e)
 {
     if (m_Host.CustomMessageBox.MessageShow("确定要清屏吗?", CustomMessageBoxKind.QuestionYesNo) == DialogResult.Yes)
     {
         UCApplyInfoForOne.Clear();
     }
 }
 private void simpleButtonConfirm_Click(object sender, EventArgs e)
 {
     UCApplyInfoForOne.Save();
 }
 private void InitInner(bool isNew, bool readOnly)
 {
     UCPatientInfoForOne.Init(m_NoOfFirstPage, m_Host);
     UCApplyInfoForOne.Init(m_NoOfFirstPage, m_Host, isNew, readOnly, m_ConsultApplySn);
 }