ufrmselfile.pas

来自「通过平行文件列表」· PAS 代码 · 共 38 行

PAS
38
字号
unit UFrmSelFile;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ComCtrls, ShellCtrls;

type
  TFrmSelFile = class(TForm)
    Button1: TButton;
    Button2: TButton;
    ShellListView1: TShellListView;
    ShellComboBox1: TShellComboBox;
    procedure Button2Click(Sender: TObject);
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

implementation

{$R *.dfm}

procedure TFrmSelFile.Button2Click(Sender: TObject);
begin
  Close;
end;

procedure TFrmSelFile.Button1Click(Sender: TObject);
begin
  ModalResult := mrOK;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?