我正在使用C#中的一個小應用程序來刷新網頁,直到滿足一些條件。我有一個「火」=開始刷新按鈕和一個「停止!」應該停止操作的按鈕。我的問題是,它需要2次嘗試點擊停止按鈕,而不是1,下面是我的代碼:我的按鈕需要兩次點擊而不是一次
更新代碼計時器。不過我認爲可以更好地使用計時器,我認爲在第一次2-3次刷新之後它不會每秒更新一次,或者根本不刷新。我的代碼中是否存在任何我無法檢測到的缺陷?
private void FireButtonClick(object sender, EventArgs e)
{
try
{
if (webBrowser1.Url.ToString().StartsWith("some url"))
{
_stopped = false;
_timer.Tick += new EventHandler(RefreshBrowser);
_timer.Interval = (1000) * (1);
_timer.Enabled = true;
_timer.Start();
}
else
{
MessageBox.Show("You must logon first.");
return;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void RefreshBrowser(object sender, EventArgs e)
{
string content = "disabled";
string baseUrl = @"http://some url";
string newUrl = string.Empty;
string buttonXpath = @"/html/body/div/div[6]/table/tr/td[2]/table/tr/td/table/tr/td/table/tr[3]/td[2]/div[4]/a";
webBrowser1.Refresh();
_proceed = false;
if (!content.ToLower().Equals("disabled") && !_stopped)
{
if (!_stopped)
{
HtmlAgilityPack.HtmlDocument htmlDocument = new HtmlAgilityPack.HtmlDocument();
htmlDocument.LoadHtml(webBrowser1.DocumentText);
HtmlNode node = htmlDocument.DocumentNode.SelectSingleNode(buttonXpath);
content = node.GetAttributeValue("disabled", string.Empty);
newUrl = node.GetAttributeValue("href", string.Empty);
}
}
else
{
webBrowser1.Navigate(baseUrl + newUrl);
}
}
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
_proceed = true;
urlTextBox.Text = webBrowser1.Url.ToString();
}
private void MainPageButtonClick(object sender, EventArgs e)
{
try
{
webBrowser1.Navigate(_mainPage);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void GoButtonClick(object sender, EventArgs e)
{
try
{
webBrowser1.Navigate(urlTextBox.Text);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void StopButtonClick(object sender, EventArgs e)
{
_timer.Stop();
_proceed = true;
_stopped = true;
}
}
我用一些'Timer'編輯了我的問題。 – iCantSeeSharp 2012-01-12 13:24:56
我不是100%確定的,但我認爲有時會在頁面加載前刷新頁面。 – iCantSeeSharp 2012-01-12 13:32:50
是的你是對的,將調用移動到RefreshBrowser方法的底部。它應該被稱爲'導航' – jdehaan 2012-01-12 14:20:46