0
時間をかけて更新したいTkinterパネルがあります。メインファイルはインポートされたクラスのメソッドを実行してTkinterパネルを描画し、1秒に5回実行します。ここで時間の経過とともにTkinterパネルを更新する
は、パネルを作成するために、メソッドを呼び出すメインスクリプトです:私は「ルートをしますか
def create(self,root):
current = self.get_current_status()
self.draw_icons(root,current)
self.draw_days(root,current)
self.draw_temps(root,current)
self.draw_status(root,current)
:ここ
# Script to control updating the display
from tkinter import *
from settings import Settings
from main_panel import Main
import time
# Creates window
root = Tk()
root.configure(background = 'black')
# Establish settings variable
settings = Settings()
# Create panel class with settings
Main = Main(settings)
# Call panel function to create itself
Main.create(root)
root.mainloop()
はTkinterのパネルを作成する方法です。後のパネルを更新するコール?