summaryrefslogtreecommitdiff
path: root/examples/gui/layouttest/mainform.frm
blob: ecad852bbf7a6a6f7c6a5196688cceddf039b140 (plain)
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
object MainWindow: TMainWindow
  BorderWidth = 8
  object Box: TBoxLayout
    Spacing = 8
    Orientation = Vertical
    object Label: TLabel
      Text = 'Choose a test Window:'
    end
    object SimpleBtn: TButton
      Text = 'Simple layout'
      OnClick = SimpleBtnClicked
    end
    object FixedBtn: TButton
      Text = 'Fixed layout'
    end
    object BoxBtn: TButton
      Text = 'Box layout'
      OnClick = BoxBtnClicked
    end
    object GridBtn: TButton
      Text = 'Grid layout'
      OnClick = GridBtnClicked
    end
    object DockingBtn: TButton
      Text = 'Docking layout'
      OnClick = DockingBtnClicked
    end
    object ExitBtn: TButton
      Text = 'Exit'
      OnClick = ExitBtnClicked
    end
  end
end