I have a string I get from the app resources called SupportEmail "Send an email to {0} to get access"
. I want to add an email hyperlink to the placeholder.
I can do it for a string using the following property that I bind to
public string SupportEmail {
get {
return String.Format(AppResources.SupportEmail, DesiredEmail);
}
}
And xaml code:
<TextBlock Text="{Binding SupportEmail }" />
Current implementation: Send an email to john@doe.com to get access
Desired implementation: Send an email to john@doe.com to get access
How can I achieve this such that the email is a hyperlink?