TK8.4 PaneWindow 组件

何时使用PanedWindow 组件

 

当你需要提供一个可供用户调整的多空间架构时 可以使用PnedWindow 组件

PanedWindow 可以为每个组件提供独立的窗格 用户可以自由调整窗格的大小

 

2用法

 

#!/usr/bin/env python

from Tkinter import *
m = PanedWindow(orient=VERTICAL)
m.pack(fill=BOTH, expand=1)

top = Label(m, text="top pane")
m.add(top)

bottom = Label(m, text="bottom pane")
m.add(bottom)
mainloop()

 

你可能感兴趣的:(TK8.4 PaneWindow 组件)