ownbook.pas
来自「图书管理系统用于学校图书管理是一款非常实用的软件」· PAS 代码 · 共 31 行
PAS
31 行
unit ownbook;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ComCtrls, StdCtrls, Buttons;
type
TOwnBookForm = class(TForm)
ListView1: TListView;
Label1: TLabel;
BitBtn1: TBitBtn;
i: TGroupBox;
private
{ Private declarations }
public
{ Public declarations }
end;
var
OwnBookForm: TOwnBookForm;
implementation
{$R *.dfm}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?