mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
18 lines
359 B
PHP
18 lines
359 B
PHP
<?php
|
|
$tkinter = PyCore::import('tkinter');
|
|
$root = $tkinter->Tk();
|
|
$root->title('我的窗口');
|
|
$root->geometry("500x500");
|
|
$root->resizable(False, False);
|
|
|
|
$button = $tkinter->Button($root, text: "Click Me!!", command: PyCore::fn(function () {
|
|
var_dump(func_get_args());
|
|
echo 'click me!!' . PHP_EOL;
|
|
}));
|
|
$button->pack();
|
|
|
|
$tkinter->mainloop();
|
|
|
|
|
|
|