Class类型的property 在D7的Object Inspector里怎么加号展不开其Published property?(40分)

  • 主题发起人 主题发起人 ronnin
  • 开始时间 开始时间
R

ronnin

Unregistered / Unconfirmed
GUEST, unregistred user!
写了一个控件
TTheClass = class(TComponent)
published
property Title: TTitle read FTitle write setTitle;
end;
其中TTitle是这样的
TTitle = class
published
property Text: string ....;
property Alignment: TAlignment ...;
property Color: TColor ....;
end;

怎么安装以后一个 TTheClass.Title 在D7的Object Inspector里怎么加号展不开的呢?


 
TTitle = class(TPersistent)既可
 

Similar threads

后退
顶部