Unit1.pas
资源名称:xiaobai.rar [点击查看]
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit Unit1;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, jpeg, ExtCtrls, Buttons, ComCtrls, StdCtrls;
- type
- TForm1 = class(TForm)
- Label1: TLabel;
- Edit1: TEdit;
- Label2: TLabel;
- Edit2: TEdit;
- Button1: TButton;
- Button2: TButton;
- BitBtn1: TBitBtn;
- Image1: TImage;
- SpeedButton1: TSpeedButton;
- GroupBox1: TGroupBox;
- RadioButton1: TRadioButton;
- RadioButton2: TRadioButton;
- ListBox1: TListBox;
- Button3: TButton;
- procedure Button3Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- Form1: TForm1;
- implementation
- {$R *.dfm}
- procedure TForm1.Button3Click(Sender: TObject);
- begin
- ListBox1.Items.Add('山西'); //使用Add方法向列表框增加项目
- ListBox1.Items.Add('北京');
- ListBox1.Items.Add('河北');
- ListBox1.Items.Add('河南');
- end;
- end.