0

是否可以在 python 的 tkinter 框中调整文本的大小?我知道我可以添加文本,并且在这样做时,除其他特征外,还可以定义字体大小。如果说某些东西触发程序这样做,是否可以调整文本大小?

4

1 回答 1

0

如果你使用的是一个Text盒子,你可以使用标签来格式化它的内容。例如:

#!/usr/bin/env python

import Tkinter
import tkFont

class App:
    def __init__(self):

        # Set up the text box
        self.root = Tkinter.Tk()
        self.text = Tkinter.Text(self.root, width=20, height=5)
        self.text.insert(Tkinter.INSERT, "Hello...")
        self.text.pack()

        # set up a mouse event
        self.text.bind("<Button-1>", self.click)

        # Set Tkniter's main loop
        self.root.mainloop()

    def click(self, event):
        self.text.tag_add("here", "1.0", "1.4")
        self.text.tag_config("here", background="yellow", font=tkFont.Font(size=36))

if __name__ == "__main__":
    App()

当您用鼠标单击框时,将更改输入文本部分的背景和大小。

于 2012-10-05T07:04:34.890 回答