views:

282

answers:

2

How to check a popup menu item?

+3  A: 

using CMenu::CheckMenuItem

See the example in MSDN.

aJ
+2  A: 

In case of context menu, use MF_CHECKED style when you add items to menu using AppendMenu() function.

Shino C G