Subject: | Cannot use 95 style |
I have tried to add and remove '-style => "top"' option in Tk::Wizard,
but it makes no difference, both will use Win2000 style.
Here is a test code running with Tk::Wizard 1.943 under RHEL 4.
Expected result: show Win 95 style
Actual result: show Win 2000 style
use Tk::Wizard;
my $wizard = new Tk::Wizard(
-title => "Test",
);
$wizard->addPage( sub{
$wizard->blank_frame(
);}
);
$wizard->addPage( sub{
$wizard->blank_frame(
);}
);
$wizard->addPage( sub{
$wizard->blank_frame(
);}
);
$wizard->Show;
MainLoop;