Добавление в Items
Поможите..
Возможно-ли добавить целековый Item (т.е. уже с SubItems и всем остальным) в Items. Или как отследить что Item в Items уже полный, т.е. в нем есть опред. кол-во SubItems. OnSubItemDraw - не подходит т.к. оно срабатывает когда происходит Draw, а не добавление. а OnInsert (вроде такое) не подходит, потому что оно срабатывает когда добавляется только Item, без SubItems'ов.
Поможите..
Если речь идет о TMenuItem то:
TMenuItem::Count
Indicates the number of subitems of the menu item.
__property int Count = {read=GetCount, nodefault};
Description
Read Count to determine the number of subitems listed in the Items property array. When the user clicks on a menu item that has subitems, a dropdown menu appears which displays those subitems. Each subitem can, in turn, contain additional subitems. The Count property counts only the immediate subitems of the menu item.
То есть показывает количество "Детей"
TMenuItem::Parent
Identifies the parent menu item of this menu item.
__property TMenuItem* Parent = {read=FParent};
Description
Read Parent to determine the menu item that represents the dropdown menu that contains this menu item. If the menu item is a top level menu item in a main menu or pop-up menu, Parent is the value of that menu’s Items property.
Указатель на MenuItem - "Родитель"