NumericComBox.cs 292 B

123456789101112131415
  1. namespace TSZ.DotNetDll.WinForms
  2. {
  3. using System;
  4. using System.Windows.Forms;
  5. public class NumericComBox : ComboBoxEx
  6. {
  7. public NumericComBox()
  8. {
  9. base.NumberOnly = true;
  10. base.DropDownStyle = ComboBoxStyle.DropDown;
  11. }
  12. }
  13. }