tkinter
एकाधिक विंडो (TopLevel विजेट्स)
खोज…
Tk और Toplevel के बीच अंतर
Tk
अनुप्रयोग की पूर्ण जड़ है, यह पहला विजेट है जिसे तत्काल बनाने की आवश्यकता है और जब यह नष्ट हो जाता है तो GUI बंद हो जाएगा।
Toplevel
एप्लिकेशन में एक विंडो है, विंडो को बंद करने से उस विंडो पर रखे सभी बच्चों के विजेट नष्ट हो जाएंगे {1} लेकिन प्रोग्राम बंद नहीं होगा।
try:
import tkinter as tk #python3
except ImportError:
import Tkinter as tk #python2
#root application, can only have one of these.
root = tk.Tk()
#put a label in the root to identify the window.
label1 = tk.Label(root, text="""this is root
closing this window will shut down app""")
label1.pack()
#you can make as many Toplevels as you like
extra_window = tk.Toplevel(root)
label2 = tk.Label(extra_window, text="""this is extra_window
closing this will not affect root""")
label2.pack()
root.mainloop()
यदि आपका अजगर कार्यक्रम केवल एक ही एप्लिकेशन का प्रतिनिधित्व करता है (जो कि यह लगभग हमेशा होगा) तो आपके पास केवल एक Tk
उदाहरण होना चाहिए, लेकिन आप जितनी चाहें उतनी Toplevel
विंडो बना सकते हैं।
try:
import tkinter as tk #python3
except ImportError:
import Tkinter as tk #python2
def generate_new_window():
window = tk.Toplevel()
label = tk.Label(window, text="a generic Toplevel window")
label.pack()
root = tk.Tk()
spawn_window_button = tk.Button(root,
text="make a new window!",
command=generate_new_window)
spawn_window_button.pack()
root.mainloop()
{1}: यदि कोई टॉपलेवल ( A = Toplevel(root)
) किसी अन्य Toplevel ( B = Toplevel(A)
) का जनक है तो विंडो A को बंद करने से भी विंडो B बंद हो जाएगी।
विंडो स्टैक की व्यवस्था करना (.lift विधि)
दूसरों के ऊपर एक विशेष विंडो को उठाने के लिए सबसे बुनियादी मामला, बस उस विंडो पर .lift()
विधि को कॉल करें (या तो Toplevel
या Tk
)
import tkinter as tk #import Tkinter as tk #change to commented for python2
root = tk.Tk()
for i in range(4):
#make a window with a label
window = tk.Toplevel(root)
label = tk.Label(window,text="window {}".format(i))
label.pack()
#add a button to root to lift that window
button = tk.Button(root, text = "lift window {}".format(i), command=window.lift)
button.grid(row=i)
root.mainloop()
हालाँकि अगर वह खिड़की को नष्ट करने की कोशिश कर रहा है तो वह इस तरह से एक त्रुटि उठाएगा:
Exception in Tkinter callback
Traceback (most recent call last):
File "/.../tkinter/__init__.py", line 1549, in __call__
return self.func(*args)
File "/.../tkinter/__init__.py", line 785, in tkraise
self.tk.call('raise', self._w, aboveThis)
_tkinter.TclError: bad window path name ".4385637096"
अक्सर जब हम उपयोगकर्ता के सामने एक विशेष विंडो डालने की कोशिश कर रहे होते हैं, लेकिन यह एक अच्छा विकल्प था, उस विंडो को फिर से बनाना है:
import tkinter as tk #import Tkinter as tk #change to commented for python2
dialog_window = None
def create_dialog():
"""creates the dialog window
** do not call if dialog_window is already open, this will
create a duplicate without handling the other
if you are unsure if it already exists or not use show_dialog()"""
global dialog_window
dialog_window = tk.Toplevel(root)
label1 = tk.Label(dialog_window,text="this is the dialog window")
label1.pack()
#put other widgets
dialog_window.lift() #ensure it appears above all others, probably will do this anyway
def show_dialog():
"""lifts the dialog_window if it exists or creates a new one otherwise"""
#this can be refactored to only have one call to create_dialog()
#but sometimes extra code will be wanted the first time it is created
if dialog_window is None:
create_dialog()
return
try:
dialog_window.lift()
except tk.TclError:
#window was closed, create a new one.
create_dialog()
root = tk.Tk()
dialog_button = tk.Button(root,
text="show dialog_window",
command=show_dialog)
dialog_button.pack()
root.mainloop()
इस तरह से फंक्शन show_dialog
डायलॉग विंडो को दिखाएगा कि यह मौजूद है या नहीं, यह भी नोट करें कि आप .winfo_exists()
को यह जांचने के लिए कॉल कर सकते हैं कि क्या यह कोशिश करने के बजाय खिड़की को उठाने से पहले मौजूद है try:except
।
वहाँ भी है .lower()
विधि है कि के रूप में उसी तरह काम करता .lift()
विधि, स्टैक में खिड़की को कम करने को छोड़कर:
import tkinter as tk #import Tkinter as tk #change to commented for python2
root = tk.Tk()
root.title("ROOT")
extra = tk.Toplevel()
label = tk.Label(extra, text="extra window")
label.pack()
lower_button = tk.Button(root,
text="lower this window",
command=root.lower)
lower_button.pack()
root.mainloop()
आप देखेंगे कि यह और भी अन्य अनुप्रयोगों नीचे कम करती है, एक निश्चित खिड़की से नीचे केवल कम करने के लिए आप के लिए यह पारित कर सकते हैं .lower()
, विधि इसी तरह यह भी साथ किया जा सकता .lift()
केवल करने के लिए विधि एक और ऊपर एक खिड़की बढ़ा एक।