summaryrefslogtreecommitdiff
path: root/examples/gui
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gui')
-rw-r--r--examples/gui/stdimages/stdimglist.lpr18
1 files changed, 7 insertions, 11 deletions
diff --git a/examples/gui/stdimages/stdimglist.lpr b/examples/gui/stdimages/stdimglist.lpr
index c70f6a0d..09e57990 100644
--- a/examples/gui/stdimages/stdimglist.lpr
+++ b/examples/gui/stdimages/stdimglist.lpr
@@ -15,7 +15,6 @@ type
protected
procedure HandlePaint; override;
public
- constructor Create(aowner: TComponent); override;
procedure AfterCreate; override;
end;
@@ -25,6 +24,13 @@ procedure TMainForm.AfterCreate;
begin
SetPosition(100,100,700,500);
WindowTitle := 'fpGUI Standard Image Listing';
+ WindowPosition := wpOneThirdDown;
+ MinWidth := 200;
+ MinHeight := 100;
+
+ btnClose := CreateButton(self, Width-90, Height-35, 75, 'Quit', @btnCloseClick);
+ btnClose.ImageName := 'stdimg.quit';
+ btnClose.Anchors := [anRight, anBottom];
end;
procedure TMainForm.btnCloseClick(Sender: TObject);
@@ -68,16 +74,6 @@ begin
sl.Free;
end;
-constructor TMainForm.Create(aowner: TComponent);
-begin
- inherited Create(aowner);
- // Place button in bottom right corner.
- btnClose := CreateButton(self, Width-90, Height-35, 75, 'Quit', @btnCloseClick);
- btnClose.ImageName := 'stdimg.quit';
-// btnClose.Focusable := False;
- btnClose.Anchors := [anRight, anBottom];
-end;
-
procedure MainProc;
var
frm : TMainForm;