我正在使用Delphi 7,我正在尝试以编程方式创建表单。这是我的表单类存根:
unit clsTStudentInfoForm;
interface
uses Forms;
type
TStudentInfoForm = class (TForm)
end;
implementation
end.
我的主表单上还有一个按钮(这只是一个常规表单,应该在运行时创建并显示上面的表单),点击它时会创建并显示学生表单作为模态窗口。它确实显示了表格,但没有任何内容。您唯一能做的就是单击窗口右上角的关闭按钮将其关闭。
procedure TLibraryForm.btnShowStudentIfoFormClick(Sender: TObject);
var
f : TStudentInfoForm;
begin
f := TStudentInfoForm.CreateNew(Self);
f.ShowModal;
f.Free;
f := nil;
end;
我不知道如何将组件添加到以编程方式创建的表单中(不是在运行时,而是在源代码中)。你能帮我写一些代码,为学生表单添加一个好的按钮,并设置标题和表格的高度和宽度(代码必须写在学生表格文件中)?
任何建议和示例都将受到高度赞赏。谢谢。
答案 0 :(得分:17)
默认情况下(即:使用所有默认IDE配置设置),将自动创建新设计的表单。只显示主表单,辅助表单可以显示:
procedure TForm1.Button1Click(Sender: TObject);
begin
Form2.Show;
Form3.ShowModal;
end;
禁用此自动创建选项是很常见的做法。转至:工具> (环境)选项> (VCL)设计师>模块创建选项,并禁用/取消选中自动创建表单&数据模块选项。
相反,只在需要时才创建(已设计的)表单:
procedure TForm1.Button1Click(Sender: TObject);
var
Form: TForm2;
begin
Form := TForm2.Create(Self);
Form.Show;
end;
这也说明了不需要二级表格的全局变量,并且通常的做法是尽快删除它们以防止错误使用:
type
TForm2 = class(TForm)
end;
//var
// Form2: TForm2; << Always delete these global variable
implementation
如果您不想使用表单设计器设置此类辅助表单,则需要在运行时在代码中创建所有控件。如下:
unit Unit2;
interface
uses
Classes, Forms, StdCtrls;
type
TForm2 = class(TForm)
private
FButton: TButton;
public
constructor CreateNew(AOwner: TComponent; Dummy: Integer = 0); override;
end;
implementation
{ TForm2 }
constructor TForm2.CreateNew(AOwner: TComponent; Dummy: Integer = 0);
begin
inherited CreateNew(AOwner);
FButton := TButton.Create(Self);
FButton.SetBounds(10, 10, 60, 24);
FButton.Caption := 'OK';
FButton.Parent := Self;
end;
end.
如您所见,我使用了CreateNew
构造函数。对于T(Custom)Form
衍生物,这是necessary:
使用
CreateNew
代替Create
创建表单,而不使用关联的.DFM文件对其进行初始化。如果CreateNew
后代不是TCustomForm
对象或TForm
的后代,请始终使用TForm
。
对于所有其他容器控件(例如TPanel
,TFrame
等),您可以覆盖默认构造函数Create
。
请按以下方式致电此表:
procedure TForm1.Button1Click(Sender: TObject);
var
Form: TForm2;
begin
Form := TForm2.Create(nil);
try
Form.ShowModal;
finally
Form.Free;
end;
end;
或者:
procedure TForm1.Button1Click(Sender: TObject);
begin
FForm := TForm2.CreateNew(Application);
FForm.Show;
end;
在最后一种情况下,表单不会被释放,但在关闭时会被隐藏,因此您需要将其引用存储在私有字段(FForm
)中并稍后释放。或者你可以自动完成:
unit Unit2;
interface
uses
Classes, Forms, StdCtrls;
type
TForm2 = class(TForm)
private
FButton: TButton;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
public
constructor CreateNew(AOwner: TComponent; Dummy: Integer = 0); override;
end;
implementation
{ TForm2 }
constructor TForm2.CreateNew(AOwner: TComponent; Dummy: Integer = 0);
begin
inherited CreateNew(AOwner);
OnClose := FormClose;
FButton := TButton.Create(Self);
FButton.SetBounds(10, 10, 60, 24);
FButton.Caption := 'OK';
FButton.Parent := Self;
end;
procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caFree;
end;
end.
现在,您可以在不存储引用的情况下调用它:
procedure TForm1.Button1Click(Sender: TObject);
begin
TForm2.CreateNew(Self).Show;
end;
您是否通过Self
,Application
或nil
作为新表单的所有者取决于您何时希望自动销毁该表单,以防您未手动或通过OnClose
事件。使用
Self
:将在销毁调用表单时销毁新表单。当调用表单不是主表单时,这尤其有用。Application
:将在应用程序结束时销毁新表单。这将是我的首选。nil
:不会破坏新表单并导致应用程序完成时内存泄漏。但是,当Windows终止进程时,内存最终会被释放。答案 1 :(得分:4)
使用控件即时创建模态表单很简单:
procedure CreateGreetingForm;
var
frm: TForm;
lbl: TLabel;
edt: TEdit;
btn: TButton;
begin
frm := TForm.Create(nil);
try
lbl := TLabel.Create(frm);
edt := TEdit.Create(frm);
btn := TButton.Create(frm);
frm.BorderStyle := bsDialog;
frm.Caption := 'Welcome';
frm.Width := 300;
frm.Position := poScreenCenter;
lbl.Parent := frm;
lbl.Top := 8;
lbl.Left := 8;
lbl.Caption := 'Please enter your name:';
edt.Parent := frm;
edt.Top := lbl.Top + lbl.Height + 8;
edt.Left := 8;
edt.Width := 200;
btn.Parent := frm;
btn.Caption := 'OK';
btn.Default := true;
btn.ModalResult := mrOk;
btn.Top := edt.Top + edt.Height + 8;
btn.Left := edt.Left + edt.Width - btn.Width;
frm.ClientHeight := btn.Top + btn.Height + 8;
frm.ClientWidth := edt.Left + edt.Width + 8;
if frm.ShowModal = mrOk then
ShowMessageFmt('Welcome, %s', [edt.Text]);
finally
frm.Free;
end;
end;