uformviewgoto.pas

来自「支持版本:Delphi 5-2009, C++Builder 5-2009 A」· PAS 代码 · 共 41 行

PAS
41
字号
unit UFormViewGoto;

interface

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

type
  TFormViewGoto = class(TForm)
    btnOk: TButton;
    btnCancel: TButton;
    boxPosition: TGroupBox;
    edPos: TEdit;
    chkPercent: TRadioButton;
    chkHex: TRadioButton;
    chkDec: TRadioButton;
    chkSelStart: TRadioButton;
    chkSelEnd: TRadioButton;
    chkLine: TRadioButton;
    procedure FormShow(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

implementation

uses
  ATxMsgProc, ATxUtils;

{$R *.DFM}

procedure TFormViewGoto.FormShow(Sender: TObject);
begin
  {$I Lang.FormViewGoto.inc}
end;

end.

⌨️ 快捷键说明

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