⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hello_world_and_bye.py

📁 The major functionality added in this release includes: - Rootless mode in X11 - Widget Templt
💻 PY
字号:
# Like Hello_World1 but with a close buttonimport PicoGUIapp = PicoGUI.Application('Greetings')l = app.addWidget('Label')l.side = 'All'l.text = 'Hello, World!'l.font = ':24:Bold'bye = app.addWidget('Button')bye.text = 'Yeah, all right, now go away'bye.side = 'Bottom'def closeapp(ev, button):    app.send(app, 'stop')app.link(closeapp, bye, "activate")app.run()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -