我想WebBrowser
在完成浏览后清除 C# 中控件 的浏览历史记录WebBrowser
。
这是我的代码:
try
{
foreach (string sr in File.ReadAllLines("link.txt"))
{
webBrowser1.Navigate(sr);
webBrowser1.ScriptErrorsSuppressed = true;
}
while (webBrowser1.ReadyState != WebBrowserReadyState.Complete)
{
Application.DoEvents();
}
}
catch(Exception)
{
MessageBox.Show("Internet Connection not found","Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
this.Close();
}