我刚启动C++,并且在网上搜索了创建单选菜单项的方法,但是
我很困惑

最好有一个例子来帮助解决问题。

因此,我希望能够创建一个简单的单选菜单项,如下所示:
http://i.imgur.com/7UrUtjS.png

但是,我仍然停留在如何创建单选菜单项上。
到目前为止,我有这个:

    LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
    {
    int wmId, wmEvent;
    HRESULT hr;
    POINTER_INFO pointerInfo = {};

    HMENU hmenu = GetMenu(hWnd);
    HMENU hChangeMenu = CreateMenu();
    HMENU hGesture = CreateMenu();
    HMENU hPointer = CreateMenu();


    UNREFERENCED_PARAMETER(hr);

    if(changeAPI)
    {
        AppendMenu(hmenu, MF_POPUP, (UINT_PTR)hChangeMenu, L"API");


        **// I want this to be a radio menu item, all I know is the MF_POPUP**
        AppendMenu(hChangeMenu, MF_POPUP, (UINT_PTR)hGesture, L"Gesture");
        AppendMenu(hChangeMenu, MF_POPUP, (UINT_PTR)hPointer, L"Pointer");
        AppendMenu(hChangeMenu, MF_POPUP, (UINT_PTR)hTouch, L"Touch");


        changeAPI = false;

    }
    //....other stuff....

最佳答案

菜单项的“ radio ”逻辑行为必须由您的代码提供。创建菜单项后,请使用ModifyMenu向适当的项添加/删除复选标记或位图。

10-08 03:07