listd.pas
来自「delphi6从入门到精通随书源码」· PAS 代码 · 共 28 行
PAS
28 行
unit ListD;
interface
uses Qt, Classes, QGraphics, QForms,
QControls, QButtons, QStdCtrls;
type
TListDial = class(TForm)
ListBox1: TListBox;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ListDial: TListDial;
implementation
{$R *.xfm}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?