CDateTimeCtrl::GetMonthCalCtrl
검색은 CMonthCalCtrl 개체의 날짜 및 시간 선택 컨트롤에 연결 합니다.
CMonthCalCtrl* GetMonthCalCtrl( ) const;
반환 값
에 대 한 포인터는 CMonthCalCtrl 개체 또는 NULL 창이 표시 되지 않으면 또는 실패 한 경우.
설명
드롭다운 화살표를 클릭할 때 날짜 및 시간 선택 컨트롤에 자식 컨트롤을 만듭니다.경우는 CMonthCalCtrl 개체가 더 이상 필요 하 고 응용 프로그램 자식 달력 날짜 시간 선택 컨트롤을 나타내는 개체 저장을 사용 해야 하므로, 소멸 됩니다.
예제
void CDateTimeDlg::OnDropDownDateTimeCtrl(NMHDR* pNMHDR, LRESULT* pResult)
{
UNREFERENCED_PARAMETER(pNMHDR);
// note that GetMonthCalCtrl() will only return a pointer to the
// month calendar control while the control actually exists--that is,
// while it has been dropped-down by the user. Otherwise, the function
// returns NULL. One appropriate time to get the control is while
// handling the DTN_DROPDOWN notification for the date time picker
// control.
// get the control
CMonthCalCtrl* pMoCalCtrl = m_DateTimeCtrl.GetMonthCalCtrl();
ASSERT(pMoCalCtrl != NULL);
// now, pMoCalCtrl is useful...
*pResult = 0;
}
요구 사항
헤더: afxdtctl.h