首页 > 其他 > 详细

常用功能代码收集

时间:2020-12-10 13:22:22      阅读:18      评论:0      收藏:0      [点我收藏+]

=========================================================================================

检查IP地址格式是否正确:

                Regex.IsMatch(ip, @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$");  //方式一
                IPAddress address;
                if (!IPAddress.TryParse(txtIP.Text, out address))  //方式二
                    throw new Exception("IP地址格式不正确");

 

=========================================================================================

只允许文本框中输入数字:

        private void txtNum_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar != 8 && !Char.IsDigit(e.KeyChar))
            {
                e.Handled = true;
            }
        }

 

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

=========================================================================================

常用功能代码收集

原文:https://www.cnblogs.com/mq0036/p/14113508.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!