我正在尝试使用自定义类的数组作为我的组件的属性,但问题是值没有保存到组件中,这意味着如果我设置值,保存所有内容并再次打开项目,组件的值消失了...我的代码如下所示:
unit Unit1;
interface
uses Windows, ExtCtrls,Classes,Controls;
type
TMyClass=class(TPersistent)
private
FName: string;
FValue: double;
public
property Name: string read FName write FName;
property Value: double read FValue write FValue;
end;
TMyComponent= class(TCustomPanel)
private
FMyArray: array[0..200] of TMyClass;
function GetmyArray(Index: Integer): TMyClass;
procedure SetMyArray(index: Integer; Value: TMyClass);
public
property myArray[index: Integer]: TMyClass read GetMyArray write SetMyArray;
end;
implementation
function TMyComponent.GetmyArray(Index: Integer): TMyClass;
begin
result:= FmyArray[Index];
end;
procedure TMyComponent.SetMyArray(index: Integer; Value: TMyClass);
begin
FMyArray[index].FName:= Value.FName;
FMyArray[index].FValue:= Value.FValue;
end;
end.
我知道只能流式传输已发布的属性,但问题是我的属性是一个数组并且无法发布...我的建议是DefineProperties()
用来提供自定义流式传输,但我不知道如何用数组来做到这一点。我认为的另一种可能性是将 TMyClass 修改为一种 TMyComponent 可能是它的父类的类,就像在 TChart 中所做的那样,您可以向其中添加不同的系列类。但我不知道这应该是什么类
TMyClass=class(T???????????)
有了它,我可以取出属性 MyArray 并创建 TMyClass 并添加到 TMyComponent ,如下所示:
MyArray1.parent:= MyComponent1;
MyArray2.parent:= MyComponent2;
...
. 哪一个是更好的选择?或者还有其他更好的主意吗?