Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: WebBrowser の完全なページの読み込みを検出する
ウェブブラウザがすべてのページの読み込みを完了したかどうかを確認するにはどうすればよいですか?
複数のページを連続して表示するにはどうすればよいですか
このコードを使用した後、WebBrowser コントロールの読み込みが完了したことを検出するには、次のようにします。
void BrowserDocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { if (e.Url.AbsolutePath != (sender as WebBrowser).Url.AbsolutePath) { return; } //Page Loading Finished }