在python的文本小部件中插入文本的问题

时间:2020-04-01 10:06:54

标签: python tkinter textbox attributeerror

INDEX(.image_files[]; .id) as $imgs | [
  .annotations[]
  | select(.attributes.type == "letter")
  | $imgs[.image_id] + {label: .label}
]

请帮助我。我对tkinter(Python)非常陌生。 我正在制作一个GUI程序,但出现此错误 from tkinter import * class btr(Tk): def __init__(self): super(btr, self).__init__() self.ticket = Text(self,height=12, width =70, bd = '10').grid(row=0, column=0) self.ticket.insert(INSERT, "abcdefg") self.ticket.insert(END, "abcdefg") btr().mainloop() 请尽快帮助我。

1 个答案:

答案 0 :(得分:0)

您正在尝试为.grid()而非其实例设置Text

在创建.grid()的实例之后,只需设置Text

class Btr(Tk):
    def __init__(self):
        super(Btr, self).__init__()
        self.ticket = Text(self, height=12, width=70, bd='10')
        self.ticket.grid(row=0, column=0)

        self.ticket.insert(INSERT, "abcdefccg")
        self.ticket.insert(END, "abcdefgx")


Btr().mainloop()