16
votes

My goal is basic: Have a label/texblock what-have-you on a WPF form that is stylized to look like a link. When clicked, the control should open a new e-mail composition window in the user's default e-mail app. The code to actually open the new e-mail window seems trivial:

Process.Start("mailto:[email protected]?subject=SubjectExample&body=BodyExample ");

However I'm having trouble with two pieces:

  1. Binding the "new message open" action to a label click event.
  2. Stylizing the label so that it looks exactly like a default WPF hyperlink.
2

2 Answers

38
votes

If you want the style to be like a hyperlink, why not just use one directly?

<TextBlock>           
    <Hyperlink NavigateUri="mailto:[email protected]?subject=SubjectExample&amp;body=BodyExample" RequestNavigate="OnNavigate">
        Click here
    </Hyperlink>
</TextBlock>

Then add:

private void OnNavigate(object sender, RequestNavigateEventArgs e)
{
    Process.Start(e.Uri.AbsoluteUri);
    e.Handled = true;
}
4
votes

You can do this entirely in XAML Use Expression interactions to call the link mentioned above.

First, import the following namespaces:

xmlns:i  = "http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:ei = "http://schemas.microsoft.com/expression/2010/interactions"

Then, use them like the following:

<Label Content="Send Email">
  <i:Interaction.Triggers>
    <i:EventTrigger EventName="MouseLeftButtonUp">
      <ei:LaunchUriOrFileAction Path="mailto:[email protected]" />
    </i:EventTrigger>
  </i:Interaction.Triggers>
</Label>