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

📄 informunit.~pas

📁 用Delphi写的车牌字符各种特征提取实验系统
💻 ~PAS
字号:
unit InformUnit;

interface

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

type
  TTextViewForm = class(TForm)
    ZTPanel: TPanel;
    GroupBox3: TGroupBox;
    StringGridLine: TStringGrid;
    GroupBox2: TGroupBox;
    RowStringGrid: TStringGrid;
    GroupBox6: TGroupBox;
    Label10: TLabel;
    Label11: TLabel;
    EditH: TEdit;
    EditW: TEdit;
    GroupBox1: TGroupBox;
    Label2: TLabel;
    Label1: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    Label8: TLabel;
    EditLTX: TEdit;
    EditLBX: TEdit;
    EditRTX: TEdit;
    EditRBX: TEdit;
    EditLTY: TEdit;
    EditLBY: TEdit;
    EditRTY: TEdit;
    EditRBY: TEdit;
    GroupBox4: TGroupBox;
    ListBoxL: TListBox;
    GroupBox8: TGroupBox;
    ListBoxR: TListBox;
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  TextViewForm: TTextViewForm;

implementation

uses MainUnit;

{$R *.dfm}

procedure TTextViewForm.FormClose(Sender: TObject;
  var Action: TCloseAction);
begin
 TextForm.N2.Checked:=False;
end;

end.

⌨️ 快捷键说明

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