如何让ttk.Combobox 中的文本居中
您可以使用 Combobox 的 justify 属性将文本居中:
from tkinter import *
from tkinter import ttk
root = Tk()
combo = ttk.Combobox(root, values=['Option 1', 'Option 2', 'Option 3'])
combo.pack()
combo.configure(justify='center')
root.mainloop()
在上面的示例中,我们使用 combo.configure(justify='center') 将 Combobox 中的文本居中。
原文地址: https://www.cveoy.top/t/topic/AIJ 著作权归作者所有。请勿转载和采集!