如何将自定义列添加到 FireMonkey 中的网格项目设计器
我为 TGrid
创建了一个自定义列 TComboColumn = class(FMX.Grid.TColumn)
。目前,我必须将此列添加到代码中的网格中,但我希望能够使用 TGrid
项目设计器来执行此操作,就像添加默认列类型 (TColumn< /code>、
TStringColumn
、TCheckColumn
等)。
I have created a custom column TComboColumn = class(FMX.Grid.TColumn)
for TGrid
. Currently I have to add this column to grids in the code, but I would like to be able to do this using the TGrid
items designer, like I can when adding default column types (TColumn
, TStringColumn
, TCheckColumn
etc).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能 Tools API 不提供支持...
可能的决定:编写并注册自己的组件编辑器(来自 TComponentEditor)。
此问题在 QC 上的报告:http://qc.embarcadero.com/wc /qcmain.aspx?d=107177
Possibly Tools API doesn't provide support...
Possible decision: to write and register own component editor (from TComponentEditor).
The report of this problem on QC: http://qc.embarcadero.com/wc/qcmain.aspx?d=107177