Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 tkinter 中更改所选文本的字体?我已经检查了网络,但我没有得到任何结果。ComboBox我想要 a of中的字体tkinter.ttk。
ComboBox
tkinter.ttk
请帮忙!
我想你正在寻找这样的东西:
text_widget.tag_add("font_1", *map(str, text_widget.tag_ranges("sel"))) text_widget.tag_config("font_1", font=...)
这将更改所选文本的字体。如果您绑定到ComboBox更改并运行脚本,它应该可以工作。