예제 #1
0
 public NiceComboBoxNormalItem(object stringableObject, NiceComboBoxItemClicked handler)
     : this(stringableObject.ToString(), stringableObject, handler)
 {
 }
예제 #2
0
 public NiceComboBoxNormalItem(string name, object tag, NiceComboBoxItemClicked handler)
     : this(name, tag)
 {
     ItemClicked += handler;
     Selectable   = false;
 }