ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/NumericBox.cs
Revision: 225
Committed: Sat Jun 2 14:29:00 2012 UTC (11 years ago) by william
File size: 548 byte(s)
Log Message:
+ commit wip for data type conversion: need to fix format exceptions

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 NumericBox : NumericBoxBase
13 {
14 public NumericBox() :base()
15 {
16 InitializeComponent();
17 }
18
19 //new public string Value
20 //{
21 // get { return base.Value; }
22 // set { base.Value = value; }
23 //}
24 }
25 }
26