tkinter文本行间距



有没有办法稍微增加tkinter文本小部件中的行间距?

我想将文本的间距设置为1.2*字体大小,以便用户调整可读性。

spacing1、spacing2和spacing3参数似乎依赖于平台,在Windows上不受支持,并且仅支持整行。

您可以按如下方式配置像素间距:

text.config(spacing1=10)    # Spacing above the first line in a block of text
text.config(spacing2=10)    # Spacing between the lines in a block of text
text.config(spacing3=10)    # Spacing after the last line in a block of text

适用于win10上的Python 3.6.5。或者你有一个非工作代码的例子吗?

相关内容

  • 没有找到相关文章

最新更新