でボタンのクリックでWebページを開きます私のために仕事.....は、私は以下のコードを試してみましたが、それはない</p> <p>....私は、フォーム(Winフォーム)のボタンをクリックすると、Webページ(グーグル)を表示するフォーム
public partial class Form1 : Form {
bool mHooked;
public Form1() {
InitializeComponent();
webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
webBrowser1.Navigate("http://www.google.com");
}
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) {
if (mHooked) return;
// Get the form
HtmlDocument doc = webBrowser1.Document;
HtmlElement form = doc.Forms["f"];
// Get the "I'm feeling lucky" button
HtmlElement lucky = form.All["btnI"];
lucky.Click += lucky_Click;
mHooked = true;
}
void lucky_Click(object sender, EventArgs e) {
this.Close();
}
}
は、私はC#の
を使用してのWinFormsアプリケーションをしています。この上の任意の1 PLSのに役立つだろう.....事前に
多くのおかげで...
105:ボタンでリンクを提供していません – 62071072SP
なぜクリックイベントでURLを設定していませんか? – V4Vendetta
@ V4Vendetta私はちょうど1つの上に試した方法を知りません... –