python把控制台输出到页面_Python控制台输出到GUI,python,转到,guitkin,中将,的,问题…

  • Post author:
  • Post category:python


我建议你不要用时间。睡觉(),因为它将导致应用程序在睡眠调用期间无响应。因此,我建议您使用.after()调用。在

关于滚动,您只需要在文本小部件中添加一个滚动条。下面是一个例子:import tkinter as tk

import time

import sys

class Display(tk.Frame):

def __init__(self):

tk.Frame.__init__(self)

self.doIt = tk.Button(self,text=”Start”, command=self.start, background = ‘black’, fg=’white’)

self.doIt.pack()

self.output = tk.Text(self, width=100, height=15, background = ‘black’, fg=’white’)

self.output.pack(side=tk.LEFT)

self.scrollbar = tk.Scrollbar(self, orient=”vertical”, command = self.output.yview)

self.scrollbar.pack(side=tk.RIGHT, fill=”y”)

self.output[‘yscrollcommand’] = self.scrollbar.set

self.count = 1

self.configure(background=’black’)

self.pack()

def start(self):

if self.count < 1000:

self.write(str(self.count) + ‘\n’)

print (self.count)

self.count += 1

self.after(2000, self.start)

def write(self, txt):

self.output.insert(tk.END,str(txt))

self.update_idletasks()

if __name__ == ‘__main__’:

Display().mainloop()



版权声明:本文为weixin_40002846原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。