# | 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 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |