External/Aga.Controls/Tree/NodeControls/NodeDecimalTextBox.cs
author sl
Thu, 01 Jan 2015 23:35:49 +0100
changeset 405 5715aefd2bcc
permissions -rw-r--r--
SharpDisplay: Migrating to new robust client scheme.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 using System.Drawing;
     5 using System.Windows.Forms;
     6 using System.Reflection;
     7 using System.ComponentModel; 
     8  
     9 namespace Aga.Controls.Tree.NodeControls
    10 {
    11 	public class NodeDecimalTextBox : NodeTextBox
    12 	{
    13 		private bool _allowDecimalSeparator = true;
    14 		[DefaultValue(true)]
    15 		public bool AllowDecimalSeparator
    16 		{
    17 			get { return _allowDecimalSeparator; }
    18 			set { _allowDecimalSeparator = value; }
    19 		}
    20 
    21 		private bool _allowNegativeSign = true;
    22 		[DefaultValue(true)]
    23 		public bool AllowNegativeSign
    24 		{
    25 			get { return _allowNegativeSign; }
    26 			set { _allowNegativeSign = value; }
    27 		}
    28 
    29 		protected NodeDecimalTextBox()
    30 		{
    31 		}
    32 
    33 		protected override TextBox CreateTextBox()
    34 		{
    35 			NumericTextBox textBox = new NumericTextBox();
    36 			textBox.AllowDecimalSeparator = AllowDecimalSeparator;
    37 			textBox.AllowNegativeSign = AllowNegativeSign;
    38 			return textBox;
    39 		}
    40 
    41 		protected override void DoApplyChanges(TreeNodeAdv node, Control editor)
    42 		{
    43 			SetValue(node, (editor as NumericTextBox).DecimalValue);
    44 		}
    45 	}
    46 }