diff options
author | Araq <rumpf_a@web.de> | 2011-07-24 23:07:40 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-24 23:07:40 +0200 |
commit | ef039a132580c2b4135146dea5df6e2c90896329 (patch) | |
tree | b128d835ebff85cb282979632ccf13a27df7893d /examples/lazarus/unit1.lfm | |
parent | a6daf7152026fb8ab9b5aee17355e23b46d2e987 (diff) | |
download | Nim-ef039a132580c2b4135146dea5df6e2c90896329.tar.gz |
doc improvements; added lazarus example
Diffstat (limited to 'examples/lazarus/unit1.lfm')
-rwxr-xr-x | examples/lazarus/unit1.lfm | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/examples/lazarus/unit1.lfm b/examples/lazarus/unit1.lfm new file mode 100755 index 000000000..bf60ff715 --- /dev/null +++ b/examples/lazarus/unit1.lfm @@ -0,0 +1,46 @@ +object Form1: TForm1 + Left = 553 + Height = 111 + Top = 464 + Width = 448 + ActiveControl = SpinEdit1 + Caption = 'Sum' + ClientHeight = 111 + ClientWidth = 448 + OnCreate = FormCreate + LCLVersion = '0.9.28.2' + object Label1: TLabel + Left = 8 + Height = 18 + Top = 72 + Width = 34 + Caption = 'Sum:' + ParentColor = False + end + object SpinEdit1: TSpinEdit + Left = 8 + Height = 27 + Top = 8 + Width = 436 + Anchors = [akTop, akLeft, akRight] + OnChange = SpinEdit1Change + TabOrder = 0 + end + object SpinEdit2: TSpinEdit + Left = 8 + Height = 27 + Top = 40 + Width = 436 + Anchors = [akTop, akLeft, akRight] + OnChange = SpinEdit1Change + TabOrder = 1 + end + object Edit1: TEdit + Left = 48 + Height = 27 + Top = 72 + Width = 396 + Anchors = [akTop, akLeft, akRight] + TabOrder = 2 + end +end |