tk为什么修改不了字体大小
import tkinter as tkroot = tk.Tk()
root.title('This is My Third Tk')
root.geometry('300x400')
lb = tk.Label(master=root, bg='yellow',width=30,height=3)
lb.pack()
b = tk.Button(master=root,text='Print Choice')
b.pack(pady=15)
ls = tk.Listbox(master=root, width=42, height=30, font=15)# 这里font 无法正常修改大小,字体永远像图中那样大
ls.pack()
for item in ['张三', '狗蛋', '王二', '老王']:
ls.insert('end',item)
root.mainloop()
font=('微软雅黑',15)
参数的正确写法是这样的,而且测试了下光定义大小不行,应该字体和大小都得写
页:
[1]