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

Delphi控件源码

开发平台:

Delphi

  1. unit FramesForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   ListFrame, StdCtrls;
  6. type
  7.   TFormFrames = class(TForm)
  8.     FrameList1: TFrameList;
  9.     FrameList2: TFrameList;
  10.     btnLeft: TButton;
  11.     btnRight: TButton;
  12.     procedure FrameList2btnClearClick(Sender: TObject);
  13.     procedure btnLeftClick(Sender: TObject);
  14.     procedure btnRightClick(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. var
  21.   FormFrames: TFormFrames;
  22. implementation
  23. {$R *.DFM}
  24. procedure TFormFrames.FrameList2btnClearClick(Sender: TObject);
  25. begin
  26.   if MessageDlg ('OK to empty the list box?',
  27.       mtConfirmation, [mbYes, mbNo], 0) = idYes then
  28.     // execute standard frame code
  29.     FrameList2.btnClearClick(Sender);
  30. end;
  31. procedure TFormFrames.btnLeftClick(Sender: TObject);
  32. begin
  33.   FrameList1.ListBox.Items.AddStrings (
  34.     FrameList2.ListBox.Items);
  35. end;
  36. procedure TFormFrames.btnRightClick(Sender: TObject);
  37. begin
  38.   FrameList2.ListBox.Items.AddStrings (
  39.     FrameList1.ListBox.Items);
  40. end;
  41. end.