With both columns aligned to right with max width I provide. I format
in python but when outputting the string to textctrl the width of the
space character doesn't match the width of other standard characters
(space is shorter). Is there a way to fix this, make a default width
for all characters or something? Or another solution I can implement.
I don't believe I can have a sizer within a textctrl correct?
With both columns aligned to right with max width I provide. I format
in python but when outputting the string to textctrl the width of the
space character doesn't match the width of other standard characters
(space is shorter). Is there a way to fix this, make a default width
for all characters or something? Or another solution I can implement.
I don't believe I can have a sizer within a textctrl correct?
Its probably because your using a proportional font in the text control, if you want all the characters to be the same width you need to use a fixed width font in the control.
> With both columns aligned to right with max width I provide. I format
> in python but when outputting the string to textctrl the width of the
> space character doesn't match the width of other standard characters
> (space is shorter). Is there a way to fix this, make a default width
> for all characters or something? Or another solution I can implement.
> I don't believe I can have a sizer within a textctrl correct?
Its probably because your using a proportional font in the text
control, if you want all the characters to be the same width you need
to use a fixed width font in the control.