?? unit1.pas
字號:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TFrmmain = class(TForm)
pnl1: TPanel;
rg1: TRadioGroup;
pnl2: TPanel;
pnl3: TPanel;
Button1: TButton;
grp1: TGroupBox;
cbb1: TComboBox;
rg2: TRadioGroup;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
filename:string;
wordlist:TStringList;
{ Public declarations }
end;
var
Frmmain: TFrmmain;
implementation
uses UntInput ;
{$R *.dfm}
{$R WINDOWSXP.RES}
procedure TFrmmain.Button1Click(Sender: TObject);
begin
with TFrminput.Create(Self) do
begin
ShowModal ;
Free;
end;
end;
procedure TFrmmain.FormCreate(Sender: TObject);
begin
filename:=getAppPath+'lujiayu.txt';
end;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -