次の方法で共有


ComboBoxEx コントロールを作成する方法

このトピックでは、ComboBoxEx コントロールを作成する方法について説明します。

知っておくべきこと

テクノロジ

前提条件

  • C/C++
  • Windows ユーザー インターフェイス プログラミング

手順

ComboBoxEx コントロールを作成するには、WC_COMBOBOXEX をウィンドウ クラスとして使用して、CreateWindowEx 機能を呼び出します。 まず、InitCommonControlsEx 関数を呼び出してウィンドウ クラスを登録し、付属の INITCOMMONCONTROLSEX 構造体で ICC_USEREX_CLASSES ビットを指定します。

コード例全体

次のアプリケーション定義関数は、メイン ウィンドウに CBS_DROPDOWN スタイルを持つ ComboBoxEx コントロールを作成します。

// 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);
}

ComboBoxEx コントロールについて

ComboBoxEx コントロール リファレンス

ComboBoxEx コントロールの使用

ComboBoxEx