Exemplo n.º 1
0
 /// <summary>
 /// Constructor for specifying style of combo box
 /// </summary>
 /// <param name="style">Specific style applied for combo box control</param>
 /// <param name="selectDefaultValue">Instructs to select the default value (if available) to avoid the control with deselected value on start</param>
 public ComboBoxOptionsAttribute(ComboBoxStyle_e style = 0, bool selectDefaultValue = false)
 {
     Style = style;
     SelectDefaultValue = selectDefaultValue;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Constructor for specifying style of combo box
 /// </summary>
 /// <param name="style">Specific style applied for combo box control</param>
 public ComboBoxOptionsAttribute(ComboBoxStyle_e style = 0)
 {
     Style = style;
 }