1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
unit MainFrm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
TntForms, StdCtrls, CheckLst, TntStdCtrls, TntDBCtrls;
type
TMainForm = class(TTntForm{TNT-ALLOW TTntForm})
TntComboBox1: TTntComboBox;
TntEdit1: TTntEdit;
TntMemo1: TTntMemo;
TntListBox1: TTntListBox;
TntCheckListBox1: TTntCheckListBox;
Label1: TTntLabel;
Label2: TTntLabel;
Label3: TTntLabel;
Label4: TTntLabel;
Label5: TTntLabel;
Button1: TTntButton;
Button2: TTntButton;
Button3: TTntButton;
Button4: TTntButton;
Label6: TTntLabel;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
MainForm: TMainForm;
implementation
{$R *.DFM}
procedure TMainForm.FormCreate(Sender: TObject);
begin
if Win32Platform = VER_PLATFORM_WIN32_NT then
Font.Name := 'MS Shell Dlg 2'
else
Font.Name := 'MS Shell Dlg';
end;
procedure TMainForm.Button1Click(Sender: TObject);
begin
Caption := TntEdit1.Text;
end;
procedure TMainForm.Button2Click(Sender: TObject);
begin
TntComboBox1.Items.Add(TntEdit1.Text);
end;
procedure TMainForm.Button3Click(Sender: TObject);
begin
TntListBox1.Items.Add(TntEdit1.Text);
end;
procedure TMainForm.Button4Click(Sender: TObject);
begin
TntCheckListbox1.Items.Add(TntEdit1.Text);
end;
end.
|