我正在使用 Delphi 5,我在运行时创建了许多面板,然后在面板上创建按钮,显然在运行时再次创建。我需要这样做,因为将来我可能需要动态创建更多面板/按钮组合。
我可以做到所有这些,但我不知道如何引用我创建的面板,因为我找不到访问面板组件名称的方法。在互联网上搜索我发现我可以使用 FindComponent 按名称查找面板组件,但我仍然不知道如何使用该名称,因为我无法使用字符串变量来引用它 - 例如 StringVar := Panel.Name。我得到类型不匹配,TComponentName 与 String。
我在创建面板时为每个面板创建了按钮。简化后,它看起来像这样:
With TypeQuery do begin // Create Panels
First;
While (not eof) do begin // create the actual panel
panelno := FieldByName('Product_type_id').AsInteger;
pnl := Tpanel.Create(Self);
pnl.name := FieldByName('PanelName').AsString;
pnl.color := clInactiveCaption;
pnl.parent := MainForm;
pnl.width := 365;
pnl.Height := 551;
pnl.left := 434
pnl.top := 122;
pnl.caption := '';
With ButtonQuery do begin
Close;
Parameters.parambyname('PanelID').Value := PanelNo;
Open;
First;
While (not eof) and (FieldByName('Product_type_id').AsInteger = PanelNo) do begin //put the buttons on it.
btnName := FieldByName('ButtonName').AsString;
BtnText := FieldByName('ButtonText').AsString;
BtnGroup := FieldByName('Product_Group_ID').AsString;
GrpColour := FieldByName('ButtonColour').AsString;
btn := TColorButton.Create(Self);
btn.Parent := pnl;
btn.Name := BtnName;
Btn.backcolor := HexToTColor(GrpColour);
btn.Font.Name := 'Arial Narrow';
btn.Font.Style := [fsBold];
btn.Font.Size := 10;
. . .
end;
. . .
end;
end;
我在几个论坛(包括这个论坛)上读到,无法直接按名称引用面板。我尝试使用组件数组,但遇到了同样的问题 - 我需要通过分配的组件名称来引用组件。
好吧,我不是枪程序员——多年来我一直使用 Delphi 创建简单的程序,但这个程序要复杂得多。我以前从未使用过运行时组件创建。
我可以使用 FindComponent 使面板可见或不可见吗?如果是这样,鉴于我在上面向您展示的内容,您能告诉我我应该采取的步骤吗?
提前致谢 ...