我想在Visual Studio 2013中使用Windows窗體創建一個瀏覽器,並且瀏覽器需要有一個地址欄,可以像谷歌搜索欄一樣在Chrome中加倍。這裏是我的地址欄的代碼,但我不知道在「If」之後和「Then」之前放置什麼以完成此操作。有任何想法嗎?創建一個地址欄,該地址欄可以像谷歌瀏覽器一樣用作Google搜索欄。 VB
Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
If Then
AxWebBrowser1.Navigate(TextBox1.Text)
Else
AxWebBrowser1.Navigate("http://www.google.com/search?q=" + TextBox1.Text)
End If
End Sub
試試這個:http://msdn.microsoft.com/en-us/library/system.uri.iswellformeduristring.aspx – Blorgbeard