我在将字符串属性绑定到TLabel
.
TGotManager = class(TComponent)
..
..
published
property HotQ1: String read FHotQ1 write SetHotQ1;
property HotQ2: string read FHotQ2 write SetHotQ2;
..
我确实创建了一个组件,因为我不想使用 TPrototypeDatasource。
我的目标是通过设计器将这两个属性绑定到TLabel.text
。
我在这里的答案的帮助下做到了这一点:Delphi:使组件对实时绑定可见
示例 1:
//with this only HotQ1 is bindable via the designer.
[ObservableMember('HotQ1')]
TGotManager = class(TComponent)
示例 2:
//with this only HotQ2 is bindable via the designer.
[ObservableMember('HotQ1')]
[ObservableMember('HotQ2')]
TGotManager = class(TComponent)
问题是我只能通过设计器绑定一个属性。拖动该属性时,其他兼容的属性会亮起绿色。拖动第二个属性时,其他属性保持红色。