Perhaps you can add Behavior for this TextBox that will go through each character and add a space after it.
Alternatively, if you are using DataBinding, use a converter with the same logic.
And if you want to outwit, you can create a custom control that inherits from the TextBox and implements this distance logic. It will also allow you to add a Dependency property, something like โNumOfSpacesโ, and you could control how many spaces it would put
Notter
source share