Bagikan melalui


Cara Menangani Tombol Drop-down

Tombol drop-down dapat menyajikan pengguna dengan daftar opsi. Untuk membuat gaya tombol ini, tentukan gaya BTNS_DROPDOWN (juga disebut TBSTYLE_DROPDOWN untuk kompatibilitas dengan versi kontrol umum sebelumnya). Untuk memperlihatkan tombol drop-down dengan panah, Anda juga harus mengatur gaya toolbar TBSTYLE_EX_DRAWDDARROWS dengan mengirim pesan TB_SETEXTENDEDSTYLE.

Ilustrasi berikut menunjukkan tombol drop-down "Buka" dengan menu konteks terbuka dan memperlihatkan daftar file. Dalam contoh ini, toolbar memiliki gaya TBSTYLE_EX_DRAWDDARROWS.

screen shot of a dialog box with three toolbar items represented by icons; one has an expanded drop-down arrow and a three-item context menu

Ilustrasi berikut menunjukkan toolbar yang sama, kali ini tanpa gaya TBSTYLE_EX_DRAWDDARROWS.

screen shot of a previous dialog box, but the icon with the context menu has no dropdown arrow

Saat pengguna mengklik tombol toolbar yang menggunakan gaya BTNS_DROPDOWN, kontrol toolbar mengirimkan jendela induknya kode pemberitahuan TBN_DROPDOWN.

Apa yang perlu Anda ketahui

Teknologi

Prasyarat

  • C/C++
  • Pemrograman Antarmuka Pengguna Windows

Petunjuk

Menangani Tombol Drop-down

Contoh kode berikut menunjukkan bagaimana aplikasi dapat mendukung tombol drop-down di kontrol toolbar.

BOOL DoNotify(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{

    #define lpnm   ((LPNMHDR)lParam)
    #define lpnmTB ((LPNMTOOLBAR)lParam)

    switch(lpnm->code)
    {
        case TBN_DROPDOWN:
        {
            // Get the coordinates of the button.
            RECT rc;
            SendMessage(lpnmTB->hdr.hwndFrom, TB_GETRECT, (WPARAM)lpnmTB->iItem, (LPARAM)&rc);

            // Convert to screen coordinates.            
            MapWindowPoints(lpnmTB->hdr.hwndFrom, HWND_DESKTOP, (LPPOINT)&rc, 2);                         
        
            // Get the menu.
            HMENU hMenuLoaded = LoadMenu(g_hinst, MAKEINTRESOURCE(IDR_POPUP)); 
         
            // Get the submenu for the first menu item.
            HMENU hPopupMenu = GetSubMenu(hMenuLoaded, 0);

            // Set up the pop-up menu.
            // In case the toolbar is too close to the bottom of the screen, 
            // set rcExclude equal to the button rectangle and the menu will appear above 
            // the button, and not below it.
         
            TPMPARAMS tpm;
         
            tpm.cbSize    = sizeof(TPMPARAMS);
            tpm.rcExclude = rc;
         
            // Show the menu and wait for input. 
            // If the user selects an item, its WM_COMMAND is sent.
         
            TrackPopupMenuEx(hPopupMenu, 
                             TPM_LEFTALIGN | TPM_LEFTBUTTON | TPM_VERTICAL, 
                             rc.left, rc.bottom, g_hwndMain, &tpm);

            DestroyMenu(hMenuLoaded);
         
        return (FALSE);
      
        }
    }
   
    return FALSE;
}

Menggunakan Kontrol Bilah Alat

Demo kontrol umum Windows (CppWindowsCommonControls)