- 論壇徽章:
- 0
|
回復(fù) 6# 首天
use Tk;
my $mw = MainWindow->new;
my $icon = $mw->Photo('-format' => 'png',-file => '/directory/icon.png');#此處圖片的路徑可以是完整的路徑
my $mw->iconimage($icon);#設(shè)定窗口標(biāo)題的ico圖標(biāo)
$mw->title("Bad Window");
$mw->Label(-text => "This is an example of a window that looks bad\nwhen you don't
send any options to pack")->pack;
$mw->Checkbutton(-text => "I like it!")->pack;
$mw->Checkbutton(-text => "I hate it!")->pack;
$mw->Checkbutton(-text => "I don't care")->pack;
$mw->Button(-text => "Exit",
-command => sub { exit })->pack;
MainLoop; |
-
a.png
(4.36 KB, 下載次數(shù): 53)
下載附件
2011-11-27 01:19 上傳
|