tkinter python entry height

前端 未结 7 1467
青春惊慌失措
青春惊慌失措 2020-12-06 06:21

I\'m making a simple app just to practice python in which I want to write text as if it were Notepad. However, I can\'t make my entry bigger. I\'m using tkinter for this. Do

7条回答
  •  渐次进展
    2020-12-06 06:55

    It sounds like you are looking for tkinter.Text, which allows you to adjust both the height and width of the widget. Below is a simple script to demonstrate:

    from tkinter import Text, Tk
    
    r = Tk()
    r.geometry("400x400")
    
    t = Text(r, height=20, width=40)
    t.pack()
    
    r.mainloop()
    

提交回复
热议问题