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

Delphi控件源码

开发平台:

Delphi

  1. unit DockPF;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   ComCtrls, ExtCtrls, StdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     Splitter1: TSplitter;
  9.     Memo1: TMemo;
  10.     Panel1: TPanel;
  11.     ListBox1: TListBox;
  12.     PageControl1: TPageControl;
  13.     TabSheet1: TTabSheet;
  14.     procedure Panel1MouseDown(Sender: TObject; Button: TMouseButton;
  15.       Shift: TShiftState; X, Y: Integer);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21. var
  22.   Form1: TForm1;
  23. implementation
  24. {$R *.DFM}
  25. procedure TForm1.Panel1MouseDown(Sender: TObject; Button: TMouseButton;
  26.   Shift: TShiftState; X, Y: Integer);
  27. begin
  28.   PageControl1.BeginDrag (False, 10);
  29. end;
  30. end.