C#实现输入内容长度检查( 二 )


            }
        }
    }

C#实现输入内容长度检查

文章插图

6验证成果合适要求,附完整源代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void checklength()
        {
            int m = int.Parse(textBox1.Text);//界说长度
            int n = textBox2.Text.Length;//录入内容长度
            if (m != n)
            {
                MessageBox.Show("输入长度错误!");
                textBox2.BackColor = Color.Red;
                textBox2.SelectAll();
            }
            else
            {
                MessageBox.Show("OK!");
                textBox2.BackColor = Color.White;
                textBox2.SelectAll();
            }
        }
        private void textBox2_KeyDown(object ser, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                
                    checklength();
                
            }
        }
    }
【C#实现输入内容长度检查】}

C#实现输入内容长度检查

文章插图

C#实现输入内容长度检查

文章插图

C#实现输入内容长度检查

文章插图


以上内容就是C#实现输入内容长度检查的内容啦,希望对你有所帮助哦!

推荐阅读