In my page I want the button that looks like the HyperlinkButton (underline when MouseOver etc). But I want to handle the navigation in code (by using the Click event handler). So I'm using a HyperlinkButton and setting the NavigateUri to an empty string and setting the Click handler.
But the problem is that the browser tried to download the entire .xbap as a file download, presumably the empty NavigateUri mean "root".
Is there any way I can re-use the HyperLinkButton class (for visuals) but perform the actual navigation / or action in the Click method.