I am putting into the TextBlock some text with trademark (TM): "Some text™"
But text block shows (TM) sign at start - "™Some text"
!
How can I show (TM) sign in the place where I put it in the string?
P/S: It looks unbelievable but it's true)
I am putting into the TextBlock some text with trademark (TM): "Some text™"
But text block shows (TM) sign at start - "™Some text"
!
How can I show (TM) sign in the place where I put it in the string?
P/S: It looks unbelievable but it's true)
Why not use
<TextBlock Text="Some Text"/><TextBlock Text="™"/>
Silverlight 5 :
Following will work with Silverlight 5 with Typography Support..
<TextBlock>
<Run Text="Some Text..!!"
Typography.Variants="Normal" />
<Run Text="TM"
Typography.Variants="Superscript" />
</TextBlock>
Go to following link for more on Open Type Support in Silverlight 5.. http://10rem.net/blog/2011/09/02/silverlight-5-and-wpf-4-opentype-support
Silverlight 4 :
No direct support for typography in Silverlight 4 but it can be achieved for few numbers and basic arithmetic. For which you can check following link on Silverlight Forums..
http://forums.silverlight.net/t/64169.aspx/1
Thanks..