CWnd::Default
呼叫預設的視窗程序。
LRESULT Default( );
傳回值
視所傳送的訊息。
備註
預設的視窗程序的應用程式無法處理的所有 Windows 訊息的預設處理。 此成員函式以確保每個訊息處理。
範例
// This sample shows how to avoid any button handling in base class,
// if any, and call the default window procedure directly.
void CMyDlg::OnLButtonDown(UINT nFlags, CPoint point)
{
UNREFERENCED_PARAMETER(nFlags);
UNREFERENCED_PARAMETER(point);
CWnd::Default();
}
需求
Header: afxwin.h