標籤:os io for cti ar amp window res
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DevComponents.DotNetBar.Controls;
namespace WinDrilling.ErrorJudge.Class
{
class ClsTxtOperate
{
#region TextBoxX控制項只能輸入數字函數
//只能輸入數字函數
public static void InputNumOnly(TextBoxX MyChecnkTxt, KeyPressEventArgs e)
{
//判斷按鍵是不是要輸入的類型。
if (((int)e.KeyChar < 48 || (int)e.KeyChar > 57) && (int)e.KeyChar != 8 && (int)e.KeyChar != 46)
e.Handled = true;
//小數點的處理。
if ((int)e.KeyChar == 46) //小數點
{
if (MyChecnkTxt.Text.Length <= 0)
e.Handled = true; //小數點不能在第一位
else
{
float f;
float oldf;
bool b1 = false, b2 = false;
b1 = float.TryParse(MyChecnkTxt.Text, out oldf);
b2 = float.TryParse(MyChecnkTxt.Text + e.KeyChar.ToString(), out f);
if (b2 == false)
{
if (b1 == true)
e.Handled = true;
else
e.Handled = false;
}
}
}
}
#endregion
}
}