Two independent windows,but part of same process : Frame « GUI Tk « Python

Python
1. 2D
2. Application
3. Buildin Function
4. Class
5. Data Structure
6. Data Type
7. Development
8. Dictionary
9. Event
10. Exception
11. File
12. Function
13. GUI Pmw
14. GUI Tk
15. Language Basics
16. List
17. Math
18. Network
19. String
20. System
21. Thread
22. Tuple
23. Utility
24. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Python » GUI Tk » FrameScreenshots 
Two independent windows,but part of same process
Two independent windows,but part of same process

import sys
from Tkinter import Toplevel, Button, Label

win1 = Toplevel()
win2 = Toplevel()

Button(win1, text='Button 1', command=sys.exit).pack()
Button(win2, text='Button 2', command=sys.exit).pack()

Label(text='Popups').pack() 
win1.mainloop()

           
       
Related examples in the same category
1. Change Frame titleChange Frame title
2. Frame action: IconifyFrame action: Iconify
3. Frame action: closeFrame action: close
4. Creating a windowCreating a window
5. Default top level root windowDefault top level root window
6. A child of root windowA child of root window
7. Transient window of rootTransient window of root
8. Frame without decorationsFrame without decorations
9. Set Frame background colorSet Frame background color
10. Geometry Window Manager methodGeometry Window Manager method
11. Set frame sizeSet frame size
12. Add toolbar to a windowAdd toolbar to a window
13. Add menu to a windowAdd menu to a window
14. Capturing clicks in a windowCapturing clicks in a window
15. subclasses frame: attach widgets to selfsubclasses frame: attach widgets to self
16. Subclass Frame and use itSubclass Frame and use it
17. Use Frame subclassUse Frame subclass
18. Redefine call method in GUI subclassRedefine call method in GUI subclass
19. Hide a frame
20. Framework for a single document interfaceFramework for a single document interface
21. Two independent root windowsTwo independent root windows
22. WM_DELETE_WINDOW messageWM_DELETE_WINDOW message
w___w_w._ja_v_a__2__s_.__co_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.