我正在尝试使用Tk的“tk缩放”功能来缩放GUI,但它似乎只是改变了小部件的大小,而不是文本的大小。是否可以在Tkinter中使用“tk scaling”并使其正常工作?这是我的测试脚本:
#!/usr/bin/python
from Tkinter import *
root = Tk()
root.tk.call('tk', 'scaling', '-displayof', '.', 50)
root.geometry('640x480+0+0')
label = Label(root, text='THis is some text')
button = Button(root, text='my button', command=root.quit)
label.pack()
button.pack()
root.mainloop()