Exemplo n.º 1
0
 public SelectBox(SelectBoxKind kind, object[] options = null, int selectedIndex = 0, Action <LINQPad.Controls.SelectBox> onSelectionChanged = null) : base(kind, options, selectedIndex, onSelectionChanged)
 {
     this.Width = "-webkit-fill-available";
 }
Exemplo n.º 2
0
 protected SelectBox(string type, SelectBoxKind kind, object[] options, int selectedIndex, Action <LINQPad.Controls.SelectBox> onSelectionChanged) : base(type, kind, options, selectedIndex, onSelectionChanged)
 {
     this.Width = "-webkit-fill-available";
 }
Exemplo n.º 3
0
 public SelectBox(SelectBoxKind kind, params string[] options) : base(kind, options)
 {
     this.Width = "-webkit-fill-available";
 }