⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainf.pas

📁 外国人写的各种类型的源代码,有兴趣的朋友看看吧!是学习的好东西哟
💻 PAS
字号:
unit MainF;

interface

uses
  SysUtils, Windows, Messages, Classes, Graphics, Controls,
  Forms, Dialogs, Childf;

type
  TMainForm = class(TForm)
    procedure FormClick(Sender: TObject);
  private
    { Private declarations }
    Counter: Integer;
  public
    { Public declarations }
  end;

var
  MainForm: TMainForm;

implementation

{$R *.DFM}

procedure TMainForm.FormClick(Sender: TObject);
var
  NewForm: TChildForm;
begin
  // increase the child window counter
  Inc (Counter);
  {create a new form and define it as child
  of the current form}
  NewForm:= TChildForm.Create (self);
  NewForm.Parent := self;
  // add the number to the caption, and move it slightly
  NewForm.Caption := NewForm.Caption + ' ' + IntToStr (Counter);
  NewForm.Left := (Counter * 20) mod 500;
  NewForm.Top := (Counter * 20) mod 450;
  // show the form
  NewForm.Show;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -