DO you have any idea on how to right justify a menuitems InputGestureText? My menu's InputGestureText will always display left-justified just like this:
File
New...............Ctrl+N
Open.............Ctrl+O
Options.........Alt+Enter
Exit................X
What I'm trying to do is to display it like this:
File
New.......................Ctrl+N
Open....................Ctrl+O
Options.............Alt+Enter
Exit...............................X
I tried doing InputGestureText.PadLeft() but my font-family is proportional so it will still result to
File
New ............Ctrl+N
Open...........Ctrl+O
Options......Alt+Enter
Exit..................X
I tried to research some ways to make it possible but no luck.