两张 Tkinter 图像

发布于 2024-09-19 01:31:49 字数 155 浏览 14 评论 0原文

我使用 Tkinter 库用 Python 编写了一个简单的 GUI。该 GUI 必须显示 2 个图像,一张在顶部,一张在底部。当我将两个图像放在窗口上时,两者之间似乎有一条白线。我该如何放置它们才能不显示出来?

我正在 Windows 7 上使用 Python 2.6 进行编程

I have written a simple GUI in Python using the Tkinter library. This GUI has to display 2 images, one on top and one on the bottom. When I place the two images on the window, there seems to be a white line between the two. How to I place them so this doesn't show up?

I am programming on Windows 7 with Python 2.6

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

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

发布评论

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

评论(1

執念 2024-09-26 01:31:49

我设置 border=0 ,它似乎消除了两个堆叠图像之间的间隙。


panel1 = Label(root, border=0, image=p)
panel2 = Label(root, border=0, image=p)

I set border=0 and it seemed to eliminate the gap between the two stacked images.


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