class - 作为属性的自定义类的数组

标签 class delphi components

我试图使用自定义类的数组作为我的组件的属性,但问题是这些值没有保存到组件中,这意味着如果我设置值,请保存所有内容并再次打开项目中,组件的值消失...我的代码如下所示:

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;
...

。哪一个是更好的选择?或者还有其他更好的想法吗?

最佳答案

最简单(也是首选)的解决方案是将 TMyClass 更改为从 TCollectionItem 派生,并将 TMyComponent.FMyArray 更改为 TOwnedCollection。然后,DFM 将自动为您流式传输项目,并且您将获得对创建和操作 TMyClass 对象及其属性的 native 设计时支持。

试试这个:

unit Unit1;

interface

uses
  Windows, ExtCtrls, Classes, Controls;

type
  TMyClass = class(TCollectionItem)
  private
    FName: string;
    FValue: double;

    procedure SetName(const AValue: string);
    procedure SetValue(AValue: double);
  public
    procedure Assign(ASource: TPersistent); override;
  published
    property Name: string read FName write SetName;
    property Value: double read FValue write SetValue;
  end;

  TMyArray = class(TOwnedCollection)
  private
    function  GetItem(Index: Integer): TMyClass;
    procedure SetItem(Index: Integer; const Value: TMyClass);
  public
    constructor Create(AOwner: TPersistent);
    function  Add: TMyClass; reintroduce;
    function  Insert(Index: Integer): TMyClass; reintroduce;
    property  Items[Index: Integer]: TMyClass read GetItem write SetItem; default;
  end;

  TMyComponent = class(TCustomPanel)
  private
    FMyArray: TMyArray;

    procedure SetMyArray(Value: TMyArray);
  public
    constructor Create(AOwner: TComponent); override;
    destructor Destroy; override;
  published
    property myArray: TMyArray read FMyArray write SetMyArray;
  end;

implementation

procedure TMyClass.Assign(ASource: TPersistent);
begin
  if ASource is TMyClass then
  begin
    with TMyClass(ASource) do
    begin
      Self.FName := Name;
      Self.FValue := Value;
    end;
    Changed(False);
  end else
    inherited;
end;

procedure TMyClass.SetName(const AValue: string);
begin
  if FName <> AValue then
  begin
    FName := AValue;
    Changed(False);
  end;
end;

procedure TMyClass.SetValue(AValue: double);
begin
  if FValue <> AValue then
  begin
    FValue := AValue;
    Changed(False);
  end;
end;

constructor TMyArray.Create(AOwner: TPersistent);
begin
  inherited Create(AOwner, TMyClass);
end;

function TMyArray.GetItem(Index: Integer): TMyClass;
begin
  Result := TMyClass(inherited GetItem(Index));
end;

procedure TMyArray.SetItem(Index: Integer; const Value: TMyClass);
begin
  inherited SetItem(Index, Value);
end;

function TMyArray.Add: TMyClass;
begin
  Result := TMyClass(inherited Add);
end;

function TMyArray.Insert(Index: Integer): TMyClass;
begin
  Result := TMyClass(inherited Insert(Index));
end;

constructor TMyComponent.Create(AOwner: TComponent);
begin
  inherited;
  FMyArray := TMyArray.Create(Self);
end;

destructor TMyComponent.Destroy;
begin
  FMyArray.Free;
  inherited;
end;

procedure TMyComponent.SetMyArray(Value: TMyArray);
begin
  FMyArray.Assign(Value);
end;

end.

关于class - 作为属性的自定义类的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16819230/

相关文章:

android - 如何将 Rad Studio 10 Seattle 与 Nox App Player 连接起来

javascript - 创建显示处理覆盖的 angular2 服务

c++ - 没有获得正确的阴影位置,基于 CPU 的光线追踪

python - 错误说明 - 'statInter' 对象没有属性 'tk'

sql - sql注入(inject)场景中格式化函数与参数?

Angular 2 模板组件

components - 是否可以从 XPCOM 或 NPAPI 创建自定义 XUL 元素?

ruby-on-rails - 如何将类级方法扩展到 Rails 中的单独模块?

javascript - JavaScript 中的函数作为类

html - MSHTML 解析 ARTICLE 标签无效