help.pas
来自「一个delphi开发的库存管理系统源代码」· PAS 代码 · 共 36 行
PAS
36 行
unit help;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
Tfhelp = class(TForm)
Panel1: TPanel;
lb: TListBox;
Splitter1: TSplitter;
tb_memo: TMemo;
Label1: TLabel;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fhelp: Tfhelp;
implementation
{$R *.dfm}
procedure Tfhelp.FormClose(Sender: TObject; var Action: TCloseAction);
begin
action := cafree;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?