lazarus/examples/laz_scalable/unit1.lfm

62 lines
1.4 KiB
Plaintext

object Form1: TForm1
Left = 323
Height = 240
Top = 239
Width = 320
Caption = 'Form1'
ClientHeight = 240
ClientWidth = 320
LCLVersion = '2.3.0.0'
object Memo1: TMemo
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 10
Height = 174
Top = 10
Width = 300
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 10
BorderSpacing.Top = 10
BorderSpacing.Right = 10
BorderSpacing.Bottom = 10
Lines.Strings = (
'Memo1'
)
TabOrder = 0
end
object ButtonHello: TButton
AnchorSideLeft.Control = Owner
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 10
Height = 30
Top = 200
Width = 118
Anchors = [akLeft, akBottom]
BorderSpacing.Left = 10
BorderSpacing.Bottom = 10
Caption = 'Say Hello'
OnClick = ButtonHelloClick
TabOrder = 1
end
object ButtonClose: TButton
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 176
Height = 30
Top = 200
Width = 134
Anchors = [akRight, akBottom]
BorderSpacing.Right = 10
BorderSpacing.Bottom = 10
Caption = 'Close'
OnClick = ButtonCloseClick
TabOrder = 2
end
end