0
Python ttkコードの開発中に別の最上位ウィンドウを使用していて、ルートからデバッグ最上位ウィンドウにメッセージを送信したいとします。ここで Python Tkinterまたはttk、他のトップレベルウィンドウにテキストを送信
は私のMyFunctions.pyでいくつかの擬似コードfrom Tkinter import *
import ttk
from MyFunctions import * # some code I wrote (see below)
root = Tk()
SetupMyFunct(root) # see below
de_bug = Toplevel(root)
dbug_frame = Frame(de_bug).grid()
debug_string1 = StringVar()
debug1_window = ttk.Label(dbug_frame, textvariable = debug_string1).grid()
root.mainloop()
です:
from Tkinter import *
import ttk
def SetupMyFunct(root):
f = ttk.Frame(root).grid()
w = Frame(f).grid()
この時点で、私は自動的にde_bugウィンドウで更新されるように、いくつかのテキストを送信したいと思いますが、私ここからどこに行くのか分かりません。
助けてください?マーク。 。