次の方法で共有


CMenu::Detach

CMenu のオブジェクトから Windows メニューをデタッチし、ハンドルを返します。

HMENU Detach( );

戻り値

成功すると、ハンドルの型 HMENU、Windows メニューへ、; それ null

解説

m_hMenu のデータ メンバーは nullに設定されます。

使用例

CMenu mnu;
HMENU hmnu = AfxGetMainWnd()->GetMenu()->GetSafeHmenu();
mnu.Attach(hmnu);

// Now you can manipulate the window's menu as a CMenu
// object...

mnu.Detach();

必要条件

ヘッダー: afxwin.h

参照

関連項目

CMenu クラス

階層図

CMenu::Attach