shake.pas
来自「formContainer for delphi,是一个delphi form动」· PAS 代码 · 共 38 行
PAS
38 行
unit Shake;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, FormCont, ComCtrls;
type
TFormShake = class(TForm)
PageControl: TPageControl;
TabSheetCode: TTabSheet;
TabSheetExecute: TTabSheet;
FormContainer: TFormContainer;
MemoCode: TMemo;
procedure FormCreate(Sender: TObject);
private
public
end;
var
FormShake: TFormShake;
implementation
uses ShakeExec;
{$R *.DFM}
procedure TFormShake.FormCreate(Sender: TObject);
begin
FormShakeExec :=
TFormShakeExec(FormContainer.CreateForm(TFormShakeExec));
FormContainer.ShowForm(FormShakeExec, True);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?