Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Eto.Forms.RadioButtonList"/> class.
 /// </summary>
 public RadioButtonList()
 {
     ItemTextBinding = new ListItemTextBinding();
     ItemKeyBinding  = new ListItemKeyBinding();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Eto.Forms.ComboBoxCell"/> class.
 /// </summary>
 public ComboBoxCell()
 {
     ComboTextBinding = new ListItemTextBinding();
     ComboKeyBinding  = new ListItemKeyBinding();
 }
Exemplo n.º 3
0
 protected ListControl(Generator g, Type type, bool initialize = true)
     : base(g, type, initialize)
 {
     TextBinding = new ListItemTextBinding();
     KeyBinding  = new ListItemKeyBinding();
 }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Eto.Forms.ListControl"/> class.
 /// </summary>
 protected ListControl()
 {
     ItemTextBinding = new ListItemTextBinding();
     ItemKeyBinding  = new ListItemKeyBinding();
 }
Exemplo n.º 5
0
 public ComboBoxCell(Generator generator)
     : base(generator, typeof(IHandler), true)
 {
     ComboTextBinding = new ListItemTextBinding();
     ComboKeyBinding  = new ListItemKeyBinding();
 }