ZForge.Controls.TreeViewAdv.Tree.NodeControls.NodeIntegerTextBox.CreateTextBox C# (CSharp) 메소드

CreateTextBox() 보호된 메소드

protected CreateTextBox ( ) : TextBox
리턴 System.Windows.Forms.TextBox
        protected override TextBox CreateTextBox()
        {
            NumericTextBox textBox = new NumericTextBox();
            textBox.AllowDecimalSeperator = false;
            textBox.AllowNegativeSign = AllowNegativeSign;
            return textBox;
        }