Tkx and configure
[email protected] (vwf) Wed, 30 Mar 2011 13:19:17 +0200
| Newsgroups | perl.tcltk |
|---|---|
| Message-ID | <[email protected]> |
Hello,
I want to change the appearance of a Tkx widget, but it behaves
different than expected:
my $frame = $mw->new_ttk__labelframe(
-text => "test",
-labelanchor => 'nw',
);
$frame->configure(-text => "TEST"); #works
$frame->configure(-foreground => "red"); #does NOT work, -foreground not recognised
How do I change colors in Tkx?
Thank you.