如果这个问题看起来很愚蠢,我很抱歉,但似乎我在最后几个小时内无法正常使用我的脑袋。
我有记录,
type
TMain = record
Sub:Array of TSubMain; //another record
Button:TsSpeedButton; //this is what we need!
end;
变量
Main:Array of TMain;
和功能:
procedure TFrameSkilLView.CreateButtons(MainBtns,SubMainBtns:byte;title:Array of string);
var i,t,l,w,h:word;
section:string;
begin
l := 41; t:= 57; w := 58; h := 25;
section := 'TOOLBTN_SKILLS_MAIN';
for i := 0 to MainBtns + subMainBtns - 1 do
with TsSpeedButton.Create(nil) do begin
Width := w; Height := h; Top := t; Left := l;
if(i = 0) then SkinData.SkinSection := section + '_C' else skindata.SkinSection := section;
caption := title[i];
Parent := Self;
inc(l,w+4);
if(i = MainBtns - 1) then begin
l := 52; t := 83; w := 64; h := 28;
section := 'TOOLBTN_SKILLS_SUBMAIN';
end;
end;
end;
让我们专注于'i:= 0到MainBtns + subMainBtns - 1'的循环。我想将下面创建的按钮添加到上面创建的名为'Main:Array of Tmain'的数组中。
它应该是这样的:
for i:=0 to X do
with TsSpeedButton.Create(nil) do begin
Main[i] := this; //where this is the created sSpeedButton.
但是,这段代码甚至无法编译,所以我要求一种可行的方法来完成我想要做的事情。
谢谢。
答案 0 :(得分:3)
首先,“这个”是C ++,而不是Pascal。 Delphi版本是“Self”。其次,您不能按名称引用带有对象的对象。你最好不要使用with
。尝试这样的事情:
for i:=0 to X do
begin
tempButton := TsSpeedButton.Create(nil);
Main[i] := tempButton;
//whatever else
end;