ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/FloatBox.cs
Revision: 223
Committed: Sat Jun 2 13:20:13 2012 UTC (11 years, 3 months ago) by william
File size: 753 byte(s)
Log Message:
+ add support for multi input box : octal is not setup

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 : base()
16 {
17 InitializeComponent();
18 this.Value = 0;
19 this.ReadOnly = false;
20 }
21
22 new public float Value
23 {
24 get { return this.ToSingle(); }
25 set { base.Value = value; }
26 }
27 public override string Text
28 {
29 get { return base.Text; }
30 set { base.Text = value; }
31 }
32 }
33 }