如何从文本文件读入文本框



我想知道一种读取文本文件并将其内容添加到文本框中的方法。我在 PyGTK 中执行此操作,所以我需要在 Python 中获取文本,并使用 PyGTK 将其放入文本框中,那会很棒。提前感谢!

假设您的文本框是TextView

#read the contents of the file
text = open("yourfile").read()
#get the underlying TextBuffer object of the TextView and set its text
textbox.get_buffer().set_text(text)

相关内容

  • 没有找到相关文章

最新更新