如何在 tkinter 中加粗所选文本?

How to bold selected text in tkinter?

我在 python 中制作了一个文本编辑器,但遇到了一些问题。它有一个 bold 按钮,它可以加粗文本编辑器的整个文本,我想将它应用到 selected 文本,但我无法正确定义功能。

请帮我select正文和加粗

这是我的代码:

#bold
bold_icon = tk.PhotoImage(file='C:\Users\soham\OneDrive\Desktop\TEXT_EDITOR\ICONS\icons2\bold.png')
bold_btn = ttk.Button(tool_bar, image= bold_icon)
bold_btn.grid(row=0, column=2, padx=5)

def change_bold():
    text_property=tk.font.Font(font=text_editor['font'])    
    if text_property.actual()['weight'] =='normal':
        text_editor.configure(font=(current_font_family, current_font_size, 'bold'))
    if text_property.actual()['weight'] == 'bold':
        text_editor.configure(font=(current_font_family, current_font_size, 'normal'))

bold_btn.configure(command=change_bold)

将您的函数更改为:

def change_bold():
    textwidget.tag_configure("boldtext",font=textwidget.cget("font")+" bold")
    textwidget.tag_add("boldtext","sel.first","sel.last")

要使文本再次正常,您应该将函数更改为:

textwidget.tag_configure("boldtext",font=textwidget.cget("font")+" bold")
def change_bold():
    if "boldtext" in textwidget.tag_names("sel.first"):
        textwidget.tag_remove("boldtext","sel.first","sel.last")
    else:
        textwidget.tag_add("boldtext","sel.first","sel.last")