首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

怎么在 popupmanu 主菜单上动态添加 Item

2012-03-01 
如何在 popupmanu 主菜单上动态添加 Item ?如题[解决办法]BCB的HELP中本身就有Ex:TMenuItem *NewItem ne

如何在 popupmanu 主菜单上动态添加 Item ?
如题

[解决办法]
BCB的HELP中本身就有Ex:
TMenuItem *NewItem = new TMenuItem(PopupMenu1); // create the new item
PopupMenu1-> Items-> Add(NewItem);// add it to the Popupmenu
NewItem-> Caption = "Menu Item " + IntToStr(3);
NewItem-> Tag = 3;
...

热点排行