Hey I want to open a new WPF form when I click in a WPF hyperlink. How can I do that. Ive seen a lot of examples that only opens web url, but I want to open a new WPF form.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can achive this like this:
and handle it like this:
|
|||
|
|
|
You could just handle the click event:
You could also go crazy with XAML:
This however is very problematic since once the dialogue is closed it cannot be reopened, that means when you click the hypelink again an exception will be thrown. Using interactivity you could do this without such problems (needs a reference to the Blend SDK though):
The action for this:
|
||||
|
|
|
XAML :
CodeBehind :
this? |
|||
|
|
