前言:
由于项目需要使用C#来制作一个IP地址栏,制作的IP地址栏使用了textBox和Label控件。
界面效果:
具体代码:
#region ip1段限制输入1-233
private void txtip1_TextChanged(object sender, EventArgs e)
{
int len = txtip1.Text.Length;
if (len == 3)
{
string currentstr = txtip1.Text;
int currentNum = Convert.ToInt32(currentstr);
if (currentNum > 223)
{
//无效
textboxValid = false;
txtip1.Text = "223";
SendKeys.Send("{Tab}");
}
else if (currentNum == 0)
{
//无效
te