Udostępnij za pośrednictwem


CWnd::GetMenu

Pobiera wskaźnik do menu tego okna.

CMenu* GetMenu( ) const;

Wartość zwracana

Identyfikuje menu.Wartość jest NULL Jeśli CWnd menu nie ma.Zwracana wartość jest niezdefiniowana, jeżeli CWnd jest okna podrzędnego.

Zwrócony wskaźnik może być tymczasowy i nie powinny być przechowywane w celu późniejszego użycia.

Uwagi

Funkcja ta nie powinna używane w okien podrzędnych, ponieważ nie mają menu.

Przykład

void CMainFrame::OnCwndDeletefilemenu()
{
   // This example deletes the leftmost popup menu or leftmost
   // popup menu item from the application's main window.
   CWnd* pMain = AfxGetMainWnd();

   // The main window _can_ be NULL, so this code
   // doesn't ASSERT and actually tests.
   if (pMain != NULL)
   {
      // Get the main window's menu
      CMenu* pMenu = pMain->GetMenu();

      // If there is a menu and it has items, we'll
      // delete the first one.
      if (pMenu != NULL && pMenu->GetMenuItemCount() > 0)
      {
         pMenu->DeleteMenu(0, MF_BYPOSITION);
         // force a redraw of the menu bar
         pMain->DrawMenuBar();
      }

      // No need to delete pMenu because it is an MFC
      // temporary object.
   }
}

Wymagania

Nagłówek: afxwin.h

Zobacz też

Informacje

Klasa CWnd

Wykres hierarchii

GetMenu