I have a Tkx gui with a notebook, and would like to have a background
image on one page (page 1). In addition the the background image, the
page will have a set of widgets on it (buttons). Does anyone have a
suggestion on how to achieve this?
This what a notebook looks like:
$nb = $mw->new_ttk__notebook;
$p1 = $nb->new_ttk__frame;
$p2 = $nb->new_ttk__frame;
$nb->add($p1, -text => "page 1");
$nb->add($p2, -text => "page 2");
AFAIK the only way to get this sort of overlay effect is to use a canvas.
-mjc