Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 TListBox 的 fmx 表单(C++ Rad Studio)。在设计时,我可以右键单击 ListBox,然后在项目编辑器中添加一个 GroupHeader。是否可以在代码中做到这一点,或者它只是设计时的一个选项?
谢谢,拉斯
如果您的 TListBox 被称为“MyListBox”,这就是您将它添加到 Delphi 列表末尾的方式:
var lListHeader: TListBoxGroupHeader; begin lListHeader := TListBoxGroupHeader.Create(MyListBox); lListHeader.Parent := MyListBox; end;