Как связать содержащиеся объекты с живым связыванием
Есть блог о TAdapterBindSource и привязке к объектам Malcolm Groves. http://www.malcolmgroves.com/blog/?p=1084
Это прекрасно работает, но как я могу связать содержащийся объект из класса.
TContact = class
private
FPhoneNumber: String;
public
property PhoneNumber : String read FPhoneNumber write FPhoneNumber;
end;
TPerson = class
private
FAge: Integer;
FLastname: string;
FFirstname: string;
FContacts: TObjectList;
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;
property Contacts: TObjectList<TContact> read FContacts write FContacts;
end;
На форме у меня есть приватный TObjectList
MyPeople : TObjectList<TPerson>;
У меня также есть два TPrototypeBindSource. Один для TPerson и один для TContact
procedure TForm1.AdapterBindSourcePersonCreateAdapter(Sender: TObject;
var ABindSourceAdapter: TBindSourceAdapter);
begin
MyPeople := TObjectList<TPerson>.Create;
MyPeople.Add(TPerson.Create('Fred', 'Flintstone', 40));
MyPeople.Add(TPerson.Create('Wilma', 'Flintstone', 41));
MyPeople.Add(TPerson.Create('Barney', 'Rubble', 40));
MyPeople.Add(TPerson.Create('Betty', 'Rubble', 39));
ABindSourceAdapter := TListBindSourceAdapter<TPerson>.Create(self, MyPeople, True);
end;
procedure TForm1.AdapterBindSourceContactCreateAdapter(Sender: TObject;
var ABindSourceAdapter: TBindSourceAdapter);
begin
ABindSourceAdapter := TListBindSourceAdapter<TContact>.Create(self);
end;
procedure TForm1.lstPersonsItemClick(const Sender: TObject; const AItem: TListViewItem);
var
AContacts: TObjectList <TContact>;
begin
AContacts:= TPerson(MyPeople.Items[1]).Contacts;
//self.AdapterBindSourceContact.??? --> How to insert list
//self.AdapterBindSourceContact.DataGenerator.SetList(AContacts, True); --> doesn't work
end;
Проблема заключается в том, как я могу загрузить данные (контакты) во второй TPrototypeBindSource.
Один день спустя... Однажды ты получил видение. Я изменил AdapterBindSourceContact (TPrototypeBindSource) на TAdapterBindSource
procedure TForm1.lstPersonsItemClick(const Sender: TObject; const AItem: TListViewItem);
var
AContacts: TObjectList <TContact>;
ABindSourceAdapter: TBindSourceAdapter;
begin
AContacts:= TPerson(MyPeople.Items[1]).Contacts;
ABindSourceAdapter := TListBindSourceAdapter<TContract>.Create(self, AContacts);
self.AdapterBindSourceContact.Adapter:= ABindSourceAdapter;
self.AdapterBindSourceContact.Active:= True;
end;
Но я не знаю, правильно ли это работает.
1 ответ
Приведение внутреннего адаптера с вашим ListBindSourceAdapter выполнит эту работу.
with TListBindSourceAdapter<TContact>(AdapterBindSourceContact.internalAdapter) do
begin
SetList(AContacts, False);
Active := true;
end;