I have a Winforms dropdown. The drop down displays a string that is in the form of...
<Description 30chars> Weight:<weight 6chars> Thickness:<thickness 6chars>
I need the strings to line up so Weight always starts at the same spot. So when there is a list of them everything lines up nicely.
My current solution was to use a monospaced font and create a display string that pads each part with spaces to get everything to line up. However the font looks different than the rest of the application and the beta testers did not approve. Is there a way to get text to line up without using a mono spaced font? This way I can use the same font that is used for the rest of the application.
Thank you