Develop and Download Open Source Software

Browse Subversion Repository

Contents of /listbox.pas

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download) (as text)
Mon Nov 7 12:03:00 2011 UTC (12 years, 4 months ago) by shiraishikazuo
File MIME type: text/x-pascal
File size: 440 byte(s)


1 unit listbox;
2 {$IFDEF FPC}
3 {$MODE DELPHI}{$H+}
4 {$ENDIF}
5
6 interface
7
8 uses
9 SysUtils, Types, Classes, Graphics, Controls, Forms, Dialogs,
10 StdCtrls, ExtCtrls, Buttons;
11
12 type
13 TListForm = class(TForm)
14 Panel1: TPanel;
15 Button1: TButton;
16 RadioGroup1: TRadioGroup;
17 private
18 { Private 宣言 }
19 public
20 { Public 宣言 }
21 end;
22
23 var
24 ListForm: TListForm;
25
26 implementation
27 {$R *.lfm}
28
29
30
31 end.

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26