namespace TSZ.DotNetDll.WinForms { using System; using System.Windows.Forms; public class NumericComBox : ComboBoxEx { public NumericComBox() { base.NumberOnly = true; base.DropDownStyle = ComboBoxStyle.DropDown; } } }