F
fx
Unregistered / Unconfirmed
GUEST, unregistred user!
想继承TCombobox做一个新的控件TMyCombobox,
使之确省的Items中有DefaultString,
但运行时报如题的错误,代码如下:
constructor TMyCombobox.create (AOwner: TComponent);
begin
inherited Create(AOwner);
style:=csDropDownList;
items.Add (DeflautString);//此时出错
end;
请问原因,及如何修改可得到想要的效果?
使之确省的Items中有DefaultString,
但运行时报如题的错误,代码如下:
constructor TMyCombobox.create (AOwner: TComponent);
begin
inherited Create(AOwner);
style:=csDropDownList;
items.Add (DeflautString);//此时出错
end;
请问原因,及如何修改可得到想要的效果?