在wpf浏览器中添加主页按钮

时间:2013-12-05 09:18:32

标签: c# wpf browser

我似乎无法在我的wpf网络浏览器中使用Home按钮。你们有什么想法吗?

我试过了:

WebBrowser1.GoHome();

但我正在回归:

'System.Windows.Controls.WebBrowser' does not contain a definition for 'GoHome' and no        extension method 'GoHome' accepting a first argument of type 'System.Windows.Controls.WebBrowser' could be found (are you missing a using directive or an assembly reference?)    

但是,其他命令工作正常,例如:

WebBrowser1.GoBack();

2 个答案:

答案 0 :(得分:0)

WebBrowser1.Navigate(Registry.GetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Start Page", "").ToString());

这适用于IE,对于任何其他浏览器来说......复杂......

答案 1 :(得分:0)

尝试为按钮指定设置的URL /将位置保存为文件。考虑它更像是书签:

string input = Microsoft.VisualBasic.Interaction.InputBox("Please set your home page", "Settings");