listd.pas
来自「delphi6 programming example」· PAS 代码 · 共 28 行
PAS
28 行
unit ListD;
interface
uses Windows, Classes, Graphics, Forms,
Controls, Buttons, StdCtrls;
type
TListDial = class(TForm)
ListBox1: TListBox;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ListDial: TListDial;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?