External/Aga.Controls/Tree/NodeControls/NodeDecimalTextBox.cs
author moel.mich
Tue, 30 Dec 2014 22:47:39 +0000
changeset 431 0e46e3ca812a
permissions -rw-r--r--
Fixed the following issue (present only on 32-bit systems):

Version: 0.7.0.0

System.NullReferenceException: Object reference not set to an instance of an object.
at OpenHardwareMonitor.GUI.MainForm.timer_Tick(Object sender, EventArgs e)
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Common Language Runtime: 4.0.30319.18444
Operating System: Microsoft Windows NT 6.1.7601 Service Pack 1
Process Type: 32-Bit
     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 }