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
|
program gridtest;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes,
fpgfx,
gui_form,
gui_grid,
gui_button;
type
TMainForm = class(TfpgForm)
private
btnQuit: TfpgButton;
grdMain: TfpgBaseGrid;
procedure btnQuitClick(Sender: TObject);
public
constructor Create(AOwner: TComponent); override;
end;
{ TMainForm }
procedure TMainForm.btnQuitClick(Sender: TObject);
begin
Close;
end;
constructor TMainForm.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
WindowTitle := 'Grid control test';
SetPosition(100, 100, 566, 350);
btnQuit := CreateButton(self, 476, 320, 80, 'Quit', @btnQuitClick);
btnQuit.ImageName := 'stdimg.Quit';
btnQuit.ShowImage := True;
btnQuit.Anchors := [anRight, anBottom];
grdMain := TfpgBaseGrid.Create(self);
grdMain.Top := 10;
grdMain.Left := 10;
grdMain.Width := Width - 20;
grdMain.Height := 300;
grdMain.Anchors := [anLeft, anTop, anRight, anBottom];
end;
procedure MainProc;
var
frm: TMainForm;
begin
fpgApplication.Initialize;
frm := TMainForm.Create(nil);
frm.Show;
fpgApplication.Run;
end;
begin
MainProc;
end.
|