c++ mfc cpropertysheet

c++ - Ejecutar la función después de mostrar el cuadro de diálogo



mfc cpropertysheet (1)

Por lo general, es suficiente para anular OnSetActive (). Sin embargo, se llama a este método antes de que CPropertyPage se haga visible y centrado. Si tiene que realizar una tarea después de que se muestra la página, debe publicar su propio mensaje en OnSetActive:

// This message will be received after CMyPropertyPage is shown #define WM_SHOWPAGE WM_APP+2 BOOL CMyPropertyPage::OnSetActive() { if(CPropertyPage::OnSetActive()) { PostMessage(WM_SHOWPAGE, 0, 0L); // post the message return TRUE; } return FALSE; } LRESULT CMyPropertyPage::OnShowPage(UINT wParam, LONG lParam) { MessageBox(TEXT("Page is visible. [TODO: your code]")); return 0L; } BEGIN_MESSAGE_MAP(CMyPropertyPage,CPropertyPage) ON_MESSAGE(WM_SHOWPAGE, OnShowPage) // add message handler // ... END_MESSAGE_MAP()

Estoy usando un asistente de MFC con CPropertyPages. ¿Hay alguna forma de llamar a una función después de que se muestra la página? En este momento, la función comienza cuando presiono el botón "Siguiente" de la página anterior.

Intenté llamar a la función desde OnShowWindow, OnCreate, OnSetActive, DoModal, pero ninguna funcionó.

¡Gracias por tu ayuda!