Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Link to Open New Email Message in Default E-mail Handler in WPF Application

Tags:

c#

email

wpf

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.
like image 790
user3342256 Avatar asked Apr 11 '14 18:04

user3342256


2 Answers

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;
}
like image 62
Reed Copsey Avatar answered Nov 19 '22 16:11

Reed Copsey


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>
like image 4
OliverAssad Avatar answered Nov 19 '22 16:11

OliverAssad