H
haisheng
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一个控件,部分代码形式如下:
TMyControl=class(TWinControl)
private
FFreshhotkey: string;
published
property Freshhotkey string read FFreshhotkey write FFreshhotkey;
end;
我想让Freshhotkey有一个初始值'F5',我在属性的定义后加了一个default 'F5',delphi编译通不过,default不支持string类型。
请问各位高手,如何为控件string类型的published属性赋初值?
TMyControl=class(TWinControl)
private
FFreshhotkey: string;
published
property Freshhotkey string read FFreshhotkey write FFreshhotkey;
end;
我想让Freshhotkey有一个初始值'F5',我在属性的定义后加了一个default 'F5',delphi编译通不过,default不支持string类型。
请问各位高手,如何为控件string类型的published属性赋初值?