gaborinalldirection.pas

来自「数字图像预出处理系统」· PAS 代码 · 共 50 行

PAS
50
字号
unit GaborInAllDirection;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, StdCtrls;

type
  TGaborInAllDirectionForm = class(TForm)
    Image8: TImage;
    Image6: TImage;
    Image2: TImage;
    Image4: TImage;
    Image1: TImage;
    Image5: TImage;
    Image3: TImage;
    Image7: TImage;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    Label8: TLabel;
    Label9: TLabel;
    Label10: TLabel;
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  GaborInAllDirectionForm: TGaborInAllDirectionForm;

implementation

uses Unit1;

{$R *.dfm}

procedure TGaborInAllDirectionForm.FormClose(Sender: TObject; var Action: TCloseAction);
begin
GaborInAllDirectionForm.Hide;
end;

end.

⌨️ 快捷键说明

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