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

📄 childwin.pas

📁 Apprehend Screen Capture Component Version 4.2 A non-visible component to capture images. Freeware w
💻 PAS
字号:
{----------------------------------------------------------------------------
| Library: ASG Screen Capture ( Apprehend 2001 ) TImage Demo
| Adirondack Software & Graphics Capture Main Form Unit for Delphi 5
| (C) Copyright Adirondack Software & Graphics 1996-2001
|
| Module: ASGCapture
|
| Description: TASGScreenCapture class and non-visible component.
|
| Known Problems: None
|---------------------------------------------------------------------------}

unit Childwin;

interface

uses Windows,
  Classes,
  Graphics,
  GraphicEX,
  Forms,
  Controls,
  StdCtrls,
  ExtCtrls;

type
  TMDIChild = class ( TForm )
    ScrollBox: TScrollBox;
    Image: TImage;
    procedure FormClose ( Sender: TObject;var Action: TCloseAction );
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Child: TMDIChild;

implementation

{$R *.DFM}

procedure TMDIChild.FormClose ( Sender: TObject;var Action: TCloseAction );
begin
  Action := caFree;
end;

end.

⌨️ 快捷键说明

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