in reply to Re: How to align the contents inside a ListboxSelect of Tk GUI
in thread How to align the contents inside a ListboxSelect of Tk GUI

as an example, with Tkx i do :

Tkx::font_configure('TkFixedFont',-size=>8); .... my $lb = $w_bfrm->new_tk__listbox( -height =>3 , -selectmode=>'extended' , -font =>'TkFixedFont' );

Replies are listed 'Best First'.
Re^3: How to align the contents inside a ListboxSelect of Tk GUI
by Evel (Acolyte) on Oct 11, 2017 at 01:50 UTC
    I using Tk, anyway thanks for your input.