I have a problem that I can not solve at all. With Delphi XE8
, I have already done livebindings
to connect components TEdit
with non-visual objects, but I can not connect screen components with objects contained in other objects:
Example:
TEstado = class
FUF: string;
end;
TCidade = class
FNome: string;
FEstado: TEstado;
end;
In this case I can connect the city name with some screen component, but I can not get cidade.estado.uf
to display on the screen.