External/Aga.Controls/Tree/NodeControls/NodeDecimalTextBox.cs
author StephaneLenclud
Thu, 18 Apr 2013 23:25:10 +0200
branchMiniDisplay
changeset 444 9b09e2ee0968
permissions -rw-r--r--
Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
     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 }