summaryrefslogtreecommitdiff
path: root/examples/gui/layouttest/boxform.frm
blob: b2dc8320d9c829a20166e86145c0ce13a7dd843b (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
object BoxWindow: TBoxWindow
  Text = 'Box layout'
  BorderWidth = 8
  object Layout: TFBoxLayout
    Spacing = 8
    Orientation = Vertical
    object BoxLayout: TFBoxLayout
      Spacing = 4
      object Button1: TFButton
        Text = 'Button 1'
      end
      object Button2: TFButton
        Text = 'Button 2'
      end
      object Button3: TFButton
        Text = 'Button 3'
      end
    end
    object FlipButton: TFButton
      Text = 'Switch to vertical'
      OnClick = FlipOrientation
    end
  end
end