我正在使用OnGetColors组件的TColorBox事件,但我无法弄清楚如何使用事件的item参数的Items属性添加新颜色。
procedure (Sender: TCustomColorBox; Items: TStrings) of object;
如何使用Items属性向TColorBox添加新颜色?
答案 0 :(得分:9)
您必须使用Items对象的AddObject
方法,如下所示:
procedure TForm1.ColorBox1GetColors(Sender: TCustomColorBox; Items: TStrings);
begin
Items.AddObject('clWebSnow',TObject(clWebSnow));
end;