File: unit2.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (99 lines) | stat: -rw-r--r-- 2,379 bytes parent folder | download | duplicates (7)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
inherited Form2: TForm2
  Left = 635
  Height = 280
  Top = 148
  Width = 288
  Caption = 'Second Form'
  ClientHeight = 280
  ClientWidth = 288
  OnCreate = FormCreate
  object LblTodayIs: TLabel[0]
    Left = 16
    Height = 15
    Top = 16
    Width = 57
    Caption = 'LblTodayIs'
    ParentColor = False
  end
  object LblMoney: TLabel[1]
    Left = 16
    Height = 15
    Top = 40
    Width = 53
    Caption = 'LblMoney'
    ParentColor = False
    ParentFont = False
  end
  object GroupBox1: TGroupBox[2]
    Left = 16
    Height = 160
    Top = 72
    Width = 256
    Caption = 'Please select'
    ClientHeight = 142
    ClientWidth = 252
    TabOrder = 0
    object RadioGroup: TRadioGroup
      Left = 7
      Height = 90
      Top = 9
      Width = 111
      AutoFill = True
      Caption = 'Single item'
      ChildSizing.LeftRightSpacing = 6
      ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
      ChildSizing.EnlargeVertical = crsHomogenousChildResize
      ChildSizing.ShrinkHorizontal = crsScaleChilds
      ChildSizing.ShrinkVertical = crsScaleChilds
      ChildSizing.Layout = cclLeftToRightThenTopToBottom
      ChildSizing.ControlsPerLine = 1
      ClientHeight = 72
      ClientWidth = 107
      ItemIndex = 0
      Items.Strings = (
        'one'
        'two'
        'three'
      )
      OnSelectionChanged = RadioGroupSelectionChanged
      TabOrder = 0
    end
    object CheckGroup: TCheckGroup
      Left = 134
      Height = 90
      Top = 9
      Width = 104
      AutoFill = True
      Caption = 'Several items'
      ChildSizing.LeftRightSpacing = 6
      ChildSizing.TopBottomSpacing = 6
      ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
      ChildSizing.EnlargeVertical = crsHomogenousChildResize
      ChildSizing.ShrinkHorizontal = crsScaleChilds
      ChildSizing.ShrinkVertical = crsScaleChilds
      ChildSizing.Layout = cclLeftToRightThenTopToBottom
      ChildSizing.ControlsPerLine = 1
      ClientHeight = 72
      ClientWidth = 100
      Items.Strings = (
        'one'
        'two'
        'three'
      )
      OnItemClick = CheckGroupItemClick
      TabOrder = 1
      Data = {
        03000000020202
      }
    end
    object LblSum: TLabel
      Left = 7
      Height = 15
      Top = 112
      Width = 231
      AutoSize = False
      Caption = 'LblSum'
      ParentColor = False
    end
  end
end