是否可以在一个标签上使用不同风格的格式化文字?现在,我的标签看起来像这样:
note_text = "Please note: Lorem ipsum dolor. For more information please visit www.myobscurewebsite.com"
note = Label(sub_frame, text=note_text, background="light grey", wraplength=430, justify=LEFT, width=62, height=0,
font=("arial", 10, "italic"))
note.grid(column=0, columnspan=3, row=4, padx=5, pady=(5, 5))
所有文本的标准格式是Italic,但某些部分需要额外的格式。 '请注意:'应该是粗体,末尾的链接应该是超链接,其间的文本('lorem ipsum'占位符)不应该有任何其他文本属性。解决这个问题的一种可能方法是安排不同的标签,但我想知道是否有更优雅的解决方案。