tags:

views:

84

answers:

1

Hi, I have a Frame (used to display a local html file) in a WPF window. I would like that when the user clicks on a link or such, this is opened in an external browser window ( user's default web browser).

Any ideas how to go about this please?

A: 
<TextBlock>
   <Hyperlink NavigateUri="http://www.google.com" TargetName="_top">
      Go Google!
   </Hyperlink>
</TextBlock>
masenkablast
Sorry perhaps i didnt explai myself properly, i meant when the user clicks on a link within the Frame, im assuming theres some eventhandling to identify when the source url changes or such but i can seem to find the right trigger yet!
Erika