Hi All,
I need to display a string with each character displayed every x pixels. (x is accross the whole string).
e.g.: "Hello" -> H at position (pixel) 0, e at position 50, l at 100, l at 150, o at 200.
Of course I could use a TextBlock for each character but it seems overkill.
TranslateTransform doesn't seem to do the trick: It offsets my characters relatively to the END of the previous character, which is not what I want.
TIA for your help.