in reply to Tk label width to fit in text area
It would be most useful if you provided an SSCCE that shed some light on the following:
If you're using Tk::Text and Tk::Label, and the labels only display text, and all of those are using the same font, and your geometry management is set up such that Tk::Text resizes when its parent does, you could possibly bind a <Configure> event (see Tk::bind) to a callback that sets the width of Tk::Label widgets to be one quarter that of the Tk::Text widget.
That's the simplest scenario. You may need additional calculations if there's padding or spacing involved. If the fonts are different, you'll need additional calculations to handle that: see Tk::Font.
— Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tk label width to fit in text area
by Anonymous Monk on Sep 12, 2017 at 09:49 UTC |