ListD.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit ListD;
  2. interface
  3. uses Qt, Classes, QGraphics, QForms,
  4.   QControls, QButtons, QStdCtrls;
  5. type
  6.   TListDial = class(TForm)
  7.     ListBox1: TListBox;
  8.     BitBtn1: TBitBtn;
  9.     BitBtn2: TBitBtn;
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15. var
  16.   ListDial: TListDial;
  17. implementation
  18. {$R *.xfm}
  19. end.