Unit1.pas
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit Unit1;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, jpeg, ExtCtrls, Buttons, ComCtrls, StdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     Label1: TLabel;
  9.     Edit1: TEdit;
  10.     Label2: TLabel;
  11.     Edit2: TEdit;
  12.     Button1: TButton;
  13.     Button2: TButton;
  14.     BitBtn1: TBitBtn;
  15.     Image1: TImage;
  16.     SpeedButton1: TSpeedButton;
  17.     GroupBox1: TGroupBox;
  18.     RadioButton1: TRadioButton;
  19.     RadioButton2: TRadioButton;
  20.     ListBox1: TListBox;
  21.     Button3: TButton;
  22.     procedure Button3Click(Sender: TObject);
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28. var
  29.   Form1: TForm1;
  30. implementation
  31. {$R *.dfm}
  32. procedure TForm1.Button3Click(Sender: TObject);
  33. begin
  34.       ListBox1.Items.Add('山西');   //使用Add方法向列表框增加项目
  35.       ListBox1.Items.Add('北京');
  36.       ListBox1.Items.Add('河北');
  37.       ListBox1.Items.Add('河南');
  38. end;
  39. end.