如何在 Tkinter 中调整根窗口的大小? [英] How can I resize the root window in Tkinter?

查看:41
本文介绍了如何在 Tkinter 中调整根窗口的大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

from Tkinter import *
import socket, sys
from PIL import Image, ImageTk

root = Tk()
root.title("Whois Tool")
root.resizable(0, 0)

text = Text()
text1 = Text()

image = Image.open("hacker2.png")
photo = ImageTk.PhotoImage(image)

label = Label(root, image=photo)
label.pack()


text1.config(width=15, height=1)
text1.pack()

def button1():
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.connect(("com.whois-servers.net", 43))
        s.send(text1.get("1.0", END) + "\r\n")
        response = ''
        while True:
            a = s.recv(4096)
            response += a
            if a == '':
                break
        s.close()
        text.insert(END, response)

def clear():
        text.delete("1.0", END)


b = Button(root, text="Enter", width=10, height=2, command=button1)
b.pack()

c = Button(root, text="Clear", width=10, height=2, command=clear)
c.pack()

scrollbar = Scrollbar(root)
scrollbar.pack(side=RIGHT, fill=Y)
text.config(width=60, height=15)
text.pack(side=LEFT, fill=Y)
scrollbar.config(command=text.yview)
text.config(yscrollcommand=scrollbar.set)


root.mainloop()

如何调整根窗口的大小,或者如何调整图像的大小以适应根窗口或按钮或标签等..谢谢

How can I resize the root window, or how can I resize an image to fit with the root window or button or lable and ect.. thanks

推荐答案

对于 500x500 的窗口,您将使用

For a 500x500 window you would use

root.geometry("500x500")

至于图像大小调整,我认为 Tkinter 不支持.您必须使用诸如 PIL 之类的库来将图像大小调整为窗口分辨率.-示例调整大小代码-

As for image resizing, I do not believe Tkinter supports it. You would have to use a library such as PIL to resize the image to the window resolution. -example resize code-

这篇关于如何在 Tkinter 中调整根窗口的大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆