Underline Text in Tkinter Label widget?

后端 未结 7 732
天命终不由人
天命终不由人 2020-12-20 12:30

I am working on a project that requires me to underline some text in a Tkinter Label widget. I know that the underline method can be used, but I can only seem to get it to u

7条回答
  •  执念已碎
    2020-12-20 13:04

    mylabel = Label(frame, text = "my label")
    mylabel.configure(font="Verdana 15 underline")
    

提交回复
热议问题