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

Delphi控件源码

开发平台:

Delphi

  1. unit LdDemoF;
  2. interface
  3. uses
  4.   SysUtils, Windows, Messages, Classes, Graphics, Controls,
  5.   Forms, Dialogs, StdCtrls, MdListDial;
  6. type
  7.   TForm1 = class(TForm)
  8.     Button1: TButton;
  9.     Edit1: TEdit;
  10.     MdListDialog1: TMdListDialog;
  11.     procedure Button1Click(Sender: TObject);
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17. var
  18.   Form1: TForm1;
  19. implementation
  20. {$R *.DFM}
  21. procedure TForm1.Button1Click(Sender: TObject);
  22. begin
  23.   // select the text of the edit,
  24.   // if corresponding to one of the strings
  25.   MdListDialog1.Selected :=
  26.     MdListDialog1.Lines.IndexOf (Edit1.Text);
  27.   // run the dialog and get the result
  28.   if MdListDialog1.Execute then
  29.     Edit1.Text := MdListDialog1.SelItem;
  30. end;
  31. end.