在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
原文 http://www.malcolmgroves.com/blog/?p=1084 一、新建VCL工程加入TAdapterBingSource控件 二、定一个TPerson类 MyPerson : TPerson; TPerson = class private FAge: Integer; FLastname: string; FFirstname: string; public constructor Create(const Firstname, Lastname : string; Age : Integer); virtual; property Firstname : string read FFirstname write FFirstname; property Lastname : string read FLastname write FLastname; property Age : Integer read FAge write FAge; end; 三、双击并加入事件代码 1.创建一个对象实列Person 2.创建一个BindSourceAdapter
procedure TForm4.AdapterBindSource1CreateAdapter(Sender: TObject; var ABindSourceAdapter: TBindSourceAdapter); begin MyPerson :=TPerson.Create('test','test1', 13); ABindSourceAdapter := TObjectBindSourceAdapter<TPerson>.Create(Self, MyPerson, True); end;
四、放一个TStringGrid对象 在Events LiveBindings点击BindVisually 点击运行
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论