Python 3.2 中的新手 GUI 问题

发布于 2024-12-12 03:31:49 字数 215 浏览 0 评论 0原文

我是编程新手,我使用 Python 3.2。

我已经开始制作一个非常简单的 GUI 程序(添加了几个标签和按钮)。 我有几个问题:

  • 如何向包含小部件的窗口添加背景?

  • 如何让程序在按下一个按钮时退出窗口?

我希望这些问题之前没有得到解答,花了几分钟在这里搜索。

感谢您抽出时间!

I am new to programming and I use Python 3.2.

I have started to make a very simple GUI program (added a couple of labels and buttons).
I have a couple of questions:

  • How do I add a background to the window where I have my widgets?

  • How do I make the program exit a window if one button is pressed?

I hope these questions haven't been answered before, spent a couple of minutes searching here.

Thanks for your time!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

画尸师 2024-12-19 03:31:50

Tkinter 不直接支持背景图像。但是,您可以做的是创建一个标签或画布小部件,将图像加载到其中,然后使用该小部件作为所有其他小部件的容器。但是,您必须自己手动处理图像的平铺或拉伸。

关于退出的问题之前已经回答过: Python: How我可以让我的 tkinter 应用程序正常退出吗?关闭 tkinter 窗口?

Tkinter doesn't directly support background images. However, what you can do is create a label or canvas widget, load the image to that, and then use that widget as the container for all other widgets. You'll have to manually handle the tiling or stretching of the image yourself, however.

The question about exiting has been answered before: Python: How can I make my tkinter app exit properly? and Close a tkinter window?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文