我有一个 TLinkPropertyToField 使用 ItemIndex 属性将一个 TRAdioGroup(自定义)绑定到一个字段,但我不知道为什么它没有将更改传递给 DataSet
代码:
auxLink := TLinkPropertyToField.Create(aOwner);
auxLink.Component := aOwner.FindComponent(aField.FieldName);
auxLink.ComponentProperty := 'ItemIndex';
auxLink.DataSource := BindSource;
auxLink.FieldName := aField.FieldName;
auxLink.Active := true;