📄 newchr.pas
字号:
unit newchr;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics,
Controls, Forms, Dialogs, StdCtrls;
type
TFrmNewChr=class(TForm)
EdName: TEdit;
Button1: TButton;
Label1: TLabel;
private
{ Private declarations }
public
function sub_49BD60(var sChrName:String):Boolean;
{ Public declarations }
end ;
var
FrmNewChr: TFrmNewChr;
implementation
{$R *.DFM}
function TFrmNewChr.sub_49BD60(var sChrName:String): Boolean;
//0x0049BD60
begin
Result:=False;
EdName.Text:='';
Self.ShowModal;
sChrName:=Trim(EdName.Text);
if sChrName <> '' then Result:=True;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -