12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Diagnostics;
- using System.Linq;
- using System.Text;
- namespace LYFZ.ComponentLibrary
- {
- public partial class NumericUpDownEx : System.Windows.Forms.NumericUpDown
- {
- public NumericUpDownEx()
- {
- InitializeComponent();
- }
- public NumericUpDownEx(IContainer container)
- {
- container.Add(this);
- }
- }
- }
|