Perl 一個簡單的 GUI 程序,有退出按鈕

#!/usr/bin/perl -w use Tk; $Tk::strictMotif = 1; $main = MainWindow->new(); $button1 = $main->Button(-text => "Exit", -command => \&exit_button, -foreground => "orangered" ); $button1->pack(); $button
相關文章
相關標籤/搜索