in reply to TK Canvas border
use strict; use warnings; use Tk; my $mw = MainWindow->new(); $mw->Canvas(-bg => 'red', -highlightthickness => 0, )->pack; $mw->Canvas(-bg => 'green', -highlightthickness => 0, )->pack; $mw->MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: TK Canvas border
by fast (Novice) on Feb 24, 2010 at 01:19 UTC |