1. 소스public partial class CjNud : UserControl { #region 이벤트 핸들러 /// /// 값이 변경되었을 때 발생하는 이벤트핸들러 /// public event EventHandler ValueChanged; #endregion #region Attributes /// /// 값의 자리수 (숫자의 좌측 빈자리를 0으로 채움, default=2) /// private int m_nDigits = 2; [Browsable(true)] [Category("Data")] [Description("값의 자리수 (숫자의 좌측 빈자리를 0으로 채움)")] publi..