ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/FloatBox.cs
Revision: 220
Committed: Sat Jun 2 11:55:57 2012 UTC (10 years, 10 months ago) by william
File size: 731 byte(s)
Log Message:
+ overhaul some number type controls

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Drawing;
5 using System.Data;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9
10 namespace System.Windows.Forms
11 {
12 public partial class FloatBox : NumericBoxBase
13 {
14 public FloatBox()
15 {
16 InitializeComponent();
17 this.Value = 0;
18 this.ReadOnly = false;
19 }
20
21 new public float Value
22 {
23 get { return this.ToSingle(); }
24 set { base.Value = value; }
25 }
26 public override string Text
27 {
28 get { return base.Text; }
29 set { base.Text = value; }
30 }
31 }
32 }