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

Delphi控件源码

开发平台:

Delphi

  1. unit ListForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   ActnList, ComCtrls, ToolWin, StdCtrls, MdListAct, ExtActns;
  6. type
  7.   TForm1 = class(TForm)
  8.     ListBox1: TListBox;
  9.     ListBox2: TListBox;
  10.     ToolBar1: TToolBar;
  11.     ToolButton1: TToolButton;
  12.     ToolButton2: TToolButton;
  13.     ToolButton3: TToolButton;
  14.     ActionList1: TActionList;
  15.     ListCopyAction1: TMdListCopyAction;
  16.     ListCutAction1: TMdListCutAction;
  17.     ListPasteAction1: TMdListPasteAction;
  18.     Edit1: TEdit;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24. var
  25.   Form1: TForm1;
  26. implementation
  27. {$R *.DFM}
  28. end.