📄 bfml_form.pas
字号:
unit BFML_Form;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, TFlatEditUnit, FileCtrl;
type
TBFML_F = class(TForm)
DriveComboBox1: TDriveComboBox;
Dir_LB: TDirectoryListBox;
Label1: TLabel;
Label2: TLabel;
Button1: TButton;
Button2: TButton;
procedure FormDestroy(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Dir_LBClick(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
BFML_F: TBFML_F;
implementation
uses Share_Unit;
{$R *.dfm}
procedure TBFML_F.FormDestroy(Sender: TObject);
begin
BFML_F:=nil;
end;
//***********************************************************************************
procedure TBFML_F.Button2Click(Sender: TObject);
begin
close;
end;
//***********************************************************************************
procedure TBFML_F.Dir_LBClick(Sender: TObject);
begin
Dir_LB.OpenCurrent;
end;
//***********************************************************************************
procedure TBFML_F.Button1Click(Sender: TObject);
begin
Share_FE.Text:=Dir_LB.Directory;
close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -