CDialog::OnOk() 和 CDialog::OnCancel()之間的區別

來源:互聯網
上載者:User

CDialog::OnOk() 和 CDialog::OnCancel()之間的區別

如果程式中存在資料交換,OnOk可以自動更新和驗證。OnCancel則不進行此項操作。

MSDN的解釋:
CDialog::OnOK 
Called when the user clicks the OK button (the button with an ID of IDOK).
virtual void OnOK( );

Remarks
Override this member function to perform the OK button action. If the dialog box includes automatic data validation and exchange, the default implementation of this member function validates the dialog-box data and updates the appropriate variables in your application.

If you implement the OK button in a modeless dialog box, you must override the OnOK member function and call DestroyWindow from within it. Don't call the base-class member function, because it calls EndDialog, which makes the dialog box invisible but does not destroy it.

CDialog::OnCancel 
The framework calls this member function when the user clicks the Cancel button or presses the ESC key in a modal or modeless dialog box.

virtual void OnCancel( );
 

Remarks
Override this member function to perform Cancel button action. The default simply terminates a modal dialog box by calling EndDialog and causing DoModal to return IDCANCEL.

If you implement the Cancel button in a modeless dialog box, you must override the OnCancel member function and call DestroyWindow from within it. Don't call the base-class member function, because it calls EndDialog, which will make the dialog box invisible but not destroy it.

 

 

 

原始碼:

void CDialog::OnOK()
{
 if (!UpdateData(TRUE))
 {
  TRACE(traceAppMsg, 0, "UpdateData failed during dialog termination./n");
  // the UpdateData routine will set focus to correct item
  return;
 }
 EndDialog(IDOK);
}

void CDialog::OnCancel()
{
 EndDialog(IDCANCEL);
}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.