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