screendelay.pas
来自「Apprehend Screen Capture Component Versi」· PAS 代码 · 共 37 行
PAS
37 行
{******************************************************************************}
{* *}
{* Adirondack Software & Graphics *}
{* Apprehend 2001 ScreenDelay Unit *}
{* (C) Copyright Adirondack Software & Graphics 1996-2001 *}
{* *}
{******************************************************************************}
unit ScreenDelay;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, Buttons,
ComCtrls;
type
TDelayDlg = class ( TForm )
Label1: TLabel;
edScreenDelay: TEdit;
OKBtn: TButton;
CancelBtn: TButton;
UpDown1: TUpDown;
private
{ Private declarations }
public
{ Public declarations }
end;
var
DelayDlg: TDelayDlg;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?