Cómo crear un control ComboBoxEx
En este tema se muestra cómo crear un control ComboBoxEx.
Lo que necesita saber
Tecnologías
Requisitos previos
- C/C++
- Programación de la interfaz de usuario de Windows
Instrucciones
Para crear un control ComboBoxEx, llame a la función CreateWindowEx mediante WC_COMBOBOXEX como clase de ventana. Primero debe registrar la clase de ventana llamando a la función InitCommonControlsEx , mientras especifica el bit de ICC_USEREX_CLASSES en la estructura INITCOMMONCONTROLSEX correspondiente.
Ejemplo completo
La siguiente función definida por la aplicación crea un control ComboBoxEx con el estilo CBS_DROPDOWN en la ventana principal.
// CreateComboEx - Registers the ComboBoxEx window class and creates
// a ComboBoxEx control in the client area of the main window.
//
// g_hwndMain - A handle to the main window.
// g_hinst - A handle to the program instance.
HWND WINAPI CreateComboEx(void)
{
HWND hwnd;
INITCOMMONCONTROLSEX icex;
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
icex.dwICC = ICC_USEREX_CLASSES;
InitCommonControlsEx(&icex);
hwnd = CreateWindowEx(0, WC_COMBOBOXEX, NULL,
WS_BORDER | WS_VISIBLE |
WS_CHILD | CBS_DROPDOWN,
// No size yet--resize after setting image list.
0, // Vertical position of Combobox
0, // Horizontal position of Combobox
0, // Sets the width of Combobox
100, // Sets the height of Combobox
g_hwndMain,
NULL,
g_hinst,
NULL);
return (hwnd);
}
Temas relacionados