screendelay.pas
来自「Apprehend Screen Capture Component Versi」· PAS 代码 · 共 40 行
PAS
40 行
//------------------------------------------------------------------------------
// Apprehend Demo
// Copyright (c) 2000 : Copyright Adirondack Software & Graphics 1996-2000
// Created : 12-30-2000
// Last Modification : 12-30-2000
// Description : ScreenDelay Unit
// Requires : LMD Controls and Preview Components
//------------------------------------------------------------------------------
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 + =
减小字号Ctrl + -
显示快捷键?