ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/FloatBox.cs
(Generate patch)

Comparing trunk/Win32/libWin32/Win32/UI/FloatBox.cs (file contents):
Revision 88 by william, Wed May 9 20:52:20 2012 UTC vs.
Revision 220 by william, Sat Jun 2 11:55:57 2012 UTC

# Line 9 | Line 9 | using System.Windows.Forms;
9  
10   namespace System.Windows.Forms
11   {
12 <    public partial class FloatBox : NumericBox
12 >    public partial class FloatBox : NumericBoxBase
13      {
14          public FloatBox()
15          {
# Line 23 | Line 23 | namespace System.Windows.Forms
23              get { return this.ToSingle(); }
24              set { base.Value = value; }
25          }
26
27
26          public override string Text
27          {
28              get { return base.Text; }
29              set { base.Text = value; }
30          }
33
34        public override bool ReadOnly
35        {
36            get { return base.ReadOnly; }
37            set { base.ReadOnly = value; }
38        }
31      }
32   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines