文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>一段Perl/Tk窗口置中代码

一段Perl/Tk窗口置中代码

时间:2010-07-02  来源:黑色阳光_cu


#!/bin/env perl


# tk_window_center.pl

# appleii

# 2010.07.01


use strict;
use warnings;
use Tk;

my $mw = MainWindow->new();
$mw->Button(-text => "click", -command => [\&center_me, $mw])->pack();
MainLoop();

sub center_me
{
    my ($mw) = @_;

    if ($mw->geometry() =~ /(\d+)x(\d+)/)
    {
        my ($width, $height) = ($1, $2);
        my ($x, $y) = (int(($mw->screenwidth() - $width) / 2), int(($mw->screenheight() - $height) / 2));
        $mw->geometry("${width}x${height}+${x}+${y}");
    }
}


相关阅读 更多 +
排行榜 更多 +
泡龙大闯关安卓版

泡龙大闯关安卓版

冒险解谜 下载
割草派对安卓版

割草派对安卓版

飞行射击 下载
堡垒攻防战安卓版

堡垒攻防战安卓版

飞行射击 下载