我正在 c# 中创建一个包含“geckoWebBrowser”的应用程序。但我必须等待网页加载完成,然后继续执行其他指令。有类似于 geckowebbrowser1.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;