/// <summary>
/// 联网检测20200529
/// </summary>
public void 网络() {
Ping pingSender = new Ping();
PingReply reply = null;
try
{
reply = pingSender.Send("www.baidu.com", 1000);
}
catch (Exception)
{
}
finally
{
if (reply == null || (reply != null && reply.Status != IPStatus.Success))
{
btn_Update.Enabled = false;
btn_Add.Enabled = false;
labelnetwork.Text = "无法连接该网站,请检查网络! 连接网站失败";
MessageBox.Show("无法连接该网站,请检查网络!", "连接网站失败", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (reply.Status == IPStatus.Success) {
labelnetwork.Text = "网络连接成功......";
btn_Update.Enabled = true;
btn_Add.Enabled = true;
}
//this.Text = "连接成功";
}
}