The following code shows an icon in the share services (e.g. Chart -> Share -> Price):
public override object Icon
{
get
{
return System.Windows.Application.Current.TryFindResource("ShareIconEmail");
}
}
But this one does not show an icon:
public override object Icon
{
get
{
//use a unicode character as our string which will render an arrow
string uniCodeArrow = "\u279A";
return uniCodeArrow;
}
}
How can I show a custom/unicode icon?
Regards,

Comment