예제 #1
0
        public static GenericEnumComboBoxExtender <K> Create <K>(ComboBox comboBox, bool immediateFill) where K : struct, IConvertible
        {
            GenericEnumComboBoxExtender <K> ret = new GenericEnumComboBoxExtender <K>(comboBox, immediateFill);

            return(ret);
        }
예제 #2
0
 public static void FillComboBox <K>(ComboBox comboBox) where K : struct, IConvertible
 {
     GenericEnumComboBoxExtender <K> pom = new GenericEnumComboBoxExtender <K>(comboBox);
 }