📄 screendelay.pas
字号:
{******************************************************************************}
{* *}
{* Adirondack Software & Graphics *}
{* ScreenDelay Unit *}
{* Delphi 5 *}
{* (C) Copyright Adirondack Software & Graphics 1996-2001 *}
{* *}
{******************************************************************************}
unit ScreenDelay;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, Buttons,
ComCtrls, ExtCtrls;
type
TDelayDlg = class ( TForm )
Label1: TLabel;
edScreenDelay: TEdit;
OKBtn: TButton;
CancelBtn: TButton;
UpDown1: TUpDown;
Panel1: TPanel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
DelayDlg: TDelayDlg;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -