how to add check mark in context menu
i build a context menu and i want when user click on contextmenuitem then check mark tick is visible with contextmenuitem and w开发者_C百科hen again user click on the same contextmenu item then check mark tick is visible off
if you're publishing AIR you can set the checked property of the contextMenuItem (NativeMenuItem) object.
myNativeMenuItem.checked = true;
精彩评论