谢谢!

解决方案 »

  1.   


    创建窗体的参数中有一个是菜单 id.HWND CreateWindow(
      LPCTSTR lpClassName,  // pointer to registered class name
      LPCTSTR lpWindowName, // pointer to window name
      DWORD dwStyle,        // window style
      int x,                // horizontal position of window
      int y,                // vertical position of window
      int nWidth,           // window width
      int nHeight,          // window height
      HWND hWndParent,      // handle to parent or owner window
      HMENU hMenu,          // handle to menu or child-window identifier
      HANDLE hInstance,     // handle to application instance
      LPVOID lpParam        // pointer to window-creation data
    );
      

  2.   


    如果该窗体是子窗口, 这个字段 hMenu 用于标志子窗口的 id. 菜单只能自己模拟, 或者用弹出菜单代替.  如果不是子窗口, 可以绑定一个菜单句柄.