如何更改 IP 地址输入的屏蔽文本框属性?例如
private void Interneta_savienojums_Load(object sender, EventArgs e)
{
maskedTextBox1.Text = " . . . ";
maskedTextBox1.PromptChar = ' ';
maskedTextBox1.Mask = "009.009.009.900";
maskedTextBox1.ResetOnSpace = false;
maskedTextBox1.SkipLiterals = false;
}
在表单文本框中显示(...),正是我想要的。当我输入 123.123.123.123 时一切正常,但当我输入 时 23 .1 .001.200
,返回值为23 .1 .001.200
,但我需要23.1.1.200
。如何删除空格并返回正常值?这可能吗?
对于我使用的 ip 检查,这是解决方案!
try
{
IPAddress IP = IPAddress.Parse("127.0.0.000");
MessageBox.Show(IP.ToString());
}
catch (FormatException)
{
MessageBox.Show("Wrong ip !");
}