开发者

How to open a Hyperlink in WebBrowser control in windows phone 7?

开发者 https://www.devze.com 2023-01-31 21:30 出处:网络
I have a Hyperlink button and web browser as below <HyperlinkButton NavigateUri=\"{Binding Path=Link}\"

I have a Hyperlink button and web browser as below

<HyperlinkButton NavigateUri="{Binding Path=Link}" 
                 Content="{Binding Path=Title}" TargetName="webBrowser1"/>
<phone:WebBrowser Grid.Row="1" HorizontalAlignment="Left" Margin="12,0,0,12"  
                  Name="webBrowser1" Width="456" Visibility="Collapsed" 
                  Navigated="webBrowser1_Navigated" />

I want to open the link in web browser when i click on Hyperlink button.But when i click on Hy开发者_运维知识库perlink button the webpage is opening in a new page ,i want it to open in webbrowser control of same page .Please help.

Thanks in advance


Add a handler to the click event of the HyperlinkButton.

In that event handler, call Navigate() on the WebBrowser control (passing the appropriate path).

0

精彩评论

暂无评论...
验证码 换一张
取 消