如何将我的tkinter(.py)文件运行的控制台嵌入到我的程序的GUI中

时间:2016-04-29 05:02:16

标签: python user-interface tkinter tk

所以就像他的头衔说..我希望能够打开我的tkinter GUI,控制台/终端嵌入到程序的一侧。没有真正的理由为什么除了它只会让我感觉更好哈哈。如果你在一天中没有多少空闲时间,如果你选择传递这个问题,我就不会感到沮丧,因为这只是为了满足我的好奇心。 (我也看了整个互联网和这个网站上的其他线程,但我无法找到我的想法D :) Example of what im thinking about here

 from tkinter import *
root = Tk()
root.geometry("350x200")
root.title("Example") 
class frame(Frame):
    def __init__(self, master):
        super().__init__(master)
        self.widget = Label(self, text="just putting this here to make space").grid(row=1, column=1)
        self.widget = Label(self, text="[Console]").grid(row=1, column=2)
        self.console = Text(self, width=18, height=10).grid(row=2, column=2)
        self.grid()
main_frame = frame(root)
root.mainloop()

1 个答案:

答案 0 :(得分:0)

你的问题已在这里得到解答:

How to embed a terminal in a Tkinter application?

祝你好运。