码迷,mamicode.com
首页 > Windows程序 > 详细

tkinter window control

时间:2017-09-23 23:27:18      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:设置   cal   order   roo   size   call   nts   als   hat   

>>> from tkinter import *
>>> root=Tk()   新建一个
>>> window=Toplevel(root) #新建一个frame, window是root的子窗口 
>>> window.title("New Window")  #窗口的标题 改成New Window
‘‘
>>> window.lower() #最小化这个window
>>> window.lower()
>>> window.lift(root) #重新显示window  To raise this window to the top of the stacking order in the window manager, call this method with no arguments. You can also raise it to a position in the stacking order just above another Toplevelwindow by passing that window                 as an argument
>>> window.state()  #获取window现在的状态
‘normal‘
>>> window.state()
‘normal‘
>>> window.state(‘zoomed‘)   #最大化窗口
‘‘
>>> window.state(‘withdraw‘)   #退出窗口 关闭
‘‘
>>>
>>> window.state(‘iconic‘)  #类似最小化。图表化 ??


‘‘
>>> window.state(‘normal‘)  #重新设置成normal模式
‘‘
>>> window.state()
‘normal‘
>>> window.iconify()
‘‘
>>> window.deiconify()  #回到正常
‘‘
>>> window.geometry(‘640x480+50+100‘)  跟第一个root之间的距离 60 480 是窗口大小。 50 和100 是距离
‘‘
>>>
>>> window.resizable(False,False)     #设置成不让改变大小
‘‘
>>> window.maxsize(640,480)            #设置最大范围
>>> window.minsize(200,200)             #设置最小范围
>>> window.resizable(True,True)
‘‘
>>> root.destroy()                                       #销毁所有窗口

tkinter window control

标签:设置   cal   order   roo   size   call   nts   als   hat   

原文地址:http://www.cnblogs.com/uxiuxi/p/7583187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!