c#に「geckoWebBrowser」を含むアプリケーションを作成しています。ただし、Webページの読み込みが完了するのを待ってから、他の命令を実行し続ける必要があります。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;