两张 Tkinter 图像
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设置 border=0 ,它似乎消除了两个堆叠图像之间的间隙。
I set border=0 and it seemed to eliminate the gap between the two stacked images.