I have a a href hyperlink in my application which on click opens a link in a built in wpf web browser control. However, how would I go about putting this inside a button control? I have tried the following:
<Button ID="button2="30" Width="100">
<a href>........</a href>
</Button>
I am doing a kinect application, i have button behaviours set up similar to an xbox selection animation.
Any ideas would be gratefully appreciated.
Use the Hyperlink element.
Typical usage would be:
The RequestNavigate event handler is required if the Hyperlink element is not nested within a navigation host control (directly or indirectly). The event handler can be defined like this:
HTH…