External/Aga.Controls/Tree/NodeControls/NodeDecimalTextBox.cs
author moel.mich
Sun, 23 Sep 2012 18:37:43 +0000
changeset 380 573f1fff48b2
permissions -rw-r--r--
Fixed Issue 387. The new implementation does not try to start a ring 0 driver that already exists, but could not be opened. It tries to delete the driver and install it new. The driver is now stored temporarily in the application folder. The driver is not correctly removed on system shutdown.
     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 }