ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/NumericBox.cs
Revision: 221
Committed: Sat Jun 2 11:56:26 2012 UTC (10 years, 9 months ago) by william
File size: 538 byte(s)
Log Message:
+ overhaul some number type controls (add missing file)

File Contents

# User Rev Content
1 william 221 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 libWin32.Win32.UI
11     {
12     public partial class NumericBox : NumericBoxBase
13     {
14     public NumericBox()
15     {
16     InitializeComponent();
17     }
18    
19     new public object Value
20     {
21     get { return base.Value; }
22     set { base.Value = (ValueType)value; }
23     }
24     }
25     }
26