reghexedit.pas
来自「灰鸽子VIP1.2经典源代码」· PAS 代码 · 共 49 行
PAS
49 行
unit RegHexEdit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, SkinBoxCtrls, SkinCtrls, DynamicSkinForm, Grids,
hexeditor, LangFrm ;
type
TRegHex = class(TLangForm)
HexEditor1: THexEditor;
spDynamicSkinForm1: TspDynamicSkinForm;
Button1: TspSkinButton;
Button2: TspSkinButton;
Label1: TspSkinStdLabel;
NameEdit: TspSkinEdit;
Label2: TspSkinStdLabel;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
RegHex: TRegHex;
implementation
uses
Main;
{$R *.dfm}
procedure TRegHex.Button1Click(Sender: TObject);
begin
RegHex.Tag:=100;
Close;
end;
procedure TRegHex.Button2Click(Sender: TObject);
begin
Close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?