summaryrefslogtreecommitdiff
path: root/examples/gui/widgettest/comboboxform.frm
blob: 23dd1f0763d8e063aa1b133aa17ce4441090e353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
object ComboBoxForm: TComboBoxForm
  BorderWidth = 8
  Text = 'Combo box test'
  OnCreate = FormCreate
  object VertBox: TBoxLayout
    Orientation = Vertical
    object GrayCheckBox: TCheckBox
      Text = 'Gray combo boxes'
      OnClick = GrayCheckBoxClick
    end
    object BetaLabel: TLabel
      Text = '(the drop-down lists are work in progress)'
    end
    object ComboBox1: TComboBox
    end
    object ComboBox2: TComboBox
    end
  end
end