Marinochka has asked for the wisdom of the Perl Monks concerning the following question:
Hi! I'm newcomer in Perl. I'm trying to make a programm using Tkx. But there is a promlem: I made a table using "tktable", but I can't use some configure options like "-selectbackground" (It says unknown option). Can maybe someone advise me how to use such options or how can I solve this problem an other way (I need to change default color of foreground or background when cell is selected)?
use strict; use Tkx; Tkx::package_require("Tktable"); my $mw = Tkx::widget->new('.'); $mw->g_wm_title("Name of the window"); my $frame = $mw->new_frame(); $frame->configure( -borderwidth => 4, -relief => 'groove', ); $frame->g_pack(); my $guess_tab = $frame->new_table( -rows => 7, -cols => 4, -cache => 1, -resizeborders => 'none', -titlecols => 1, -titlerows => 1, -variable => \%guess, ); $guess_tab->g_pack(); Tkx::MainLoop();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk configure in Tkx
by zentara (Cardinal) on Jan 29, 2013 at 10:40 UTC | |
|
Re: Tk configure in Tkx (tcl/tk is tcl/tk, configure is configure, widgets either have options or they don't)
by Anonymous Monk on Jan 29, 2013 at 08:22 UTC | |
by Marinochka (Initiate) on Jan 29, 2013 at 10:04 UTC | |
by Anonymous Monk on Jan 29, 2013 at 10:54 UTC | |
by Marinochka (Initiate) on Jan 29, 2013 at 13:46 UTC |