Compartilhar via


CPropertySheet::PressButton

Simula a escolha do botão especificado em uma folha de propriedades.

void PressButton( 
   int nButton  
);

Parâmetros

  • nButton
    nButton: Identifica o botão seja pressionado. Este parâmetro pode ser um dos seguintes valores:

    • PSBTN_BACK escolher o botão novamente.

    • PSBTN_NEXT escolher o botão seguir.

    • PSBTN_FINISH escolher o botão de suporte.

    • PSBTN_OK escolher o botão OK.

    • PSBTN_APPLYNOW escolher aplicar os agora.

    • PSBTN_CANCEL escolher o botão cancelar.

    • PSBTN_HELP escolher o botão ajuda.

Comentários

Consulte PSM_PRESSBUTTON para obter mais informações sobre a mensagem de Pressbutton SDK do windows.

Uma chamada para PressButton não enviará a notificação de PSN_APPLY de uma página de propriedades para a estrutura. Para enviar essa notificação, chame CPropertyPage::OnOK.

Exemplo

// Simulate the selection of OK and Cancel buttons when Alt+K and 
// Alt+C are pressed.  CMyPropertySheet is a CPropertySheet-derived  
// class.
BOOL CMyPropertySheet::PreTranslateMessage(MSG* pMsg) 
{
   if (pMsg->message >= WM_KEYFIRST && pMsg->message <= WM_KEYLAST)
   {
      BOOL altkey = GetKeyState(VK_MENU) < 0;
      if (altkey)
      {
         BOOL handled = TRUE;
         switch(toupper((int)pMsg->wParam))
         {
         case 'C':                     // for Alt+C - Cancel button
            PressButton(PSBTN_CANCEL);   // or EndDialog(IDCANCEL); 
            break;

         case 'K':                     // for Alt+K - OK button
            PressButton(PSBTN_OK);      // or EndDialog(IDOK); 
            break;

         default:
            handled = FALSE;
         }

         if (handled)
            return TRUE;
      }
   }

   return CPropertySheet::PreTranslateMessage(pMsg);
}

Requisitos

Cabeçalho: afxdlgs.h

Consulte também

Referência

Classe CPropertySheet

Gráfico da hierarquia