--- trunk/Win32/libWin32/Win32/UI/FloatBox.cs 2012/05/09 20:52:20 88 +++ trunk/Win32/libWin32/Win32/UI/FloatBox.cs 2012/06/02 13:20:13 223 @@ -9,9 +9,10 @@ using System.Windows.Forms; namespace System.Windows.Forms { - public partial class FloatBox : NumericBox + public partial class FloatBox : NumericBoxBase { public FloatBox() + : base() { InitializeComponent(); this.Value = 0; @@ -23,18 +24,10 @@ namespace System.Windows.Forms get { return this.ToSingle(); } set { base.Value = value; } } - - public override string Text { get { return base.Text; } set { base.Text = value; } } - - public override bool ReadOnly - { - get { return base.ReadOnly; } - set { base.ReadOnly = value; } - } } }