0
我正在創建一個包含「geckoWebBrowser」在c#中的應用程序。但是我必須等待完整加載一個網頁,然後繼續執行其他指令。有類似geckowebbrowser1.DocumentComplete的東西,但我不知道如何使用它。壁虎WebBrowser.DocumentComplete事件
請幫我看看我的代碼:
geckoWebBrowser1.Navigate(textBox1.Text);
// i want to perform below thing after web page load completes
listBox1.Items.RemoveAt(listBox1.SelectedIndex);
listBox1.SelectedIndex = 0;
int i = listBox1.Items.Count;
string str = Convert.ToString(i);
label2.Text = str;