Dave
Dave

Reputation:

how to create email link in xaml

how to create an email link in xaml?

Thanks

Upvotes: 0

Views: 1645

Answers (1)

davidtbernal
davidtbernal

Reputation: 13684

Try:

<Label>
   <Hyperlink NavigateUri="mailto:[email protected]">Email me!</Hyperlink>
</Label>

Upvotes: 2

Related Questions