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

📄 uformviewgoto.pas

📁 支持版本:Delphi 5-2009, C++Builder 5-2009 ATViewer特性: Text, Binary, Hex, Unicode:所有文件
💻 PAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -