以下代码工作正常。它显示一个panedwindow
,顶部有一个蓝色框,下面有一个绿色框:
panedwindow .root -orient vertical -showhandle true -background red
frame .top -background blue -width 100 -height 100
frame .bot -background green -width 100 -height 100
.root add .top .bot
pack .root -expand true -fill both
但是,当我向下移动panedwindow
命令时,事情就停止了。顶部的蓝色框未显示。相反,它本身的红色panedwindow
闪耀:
frame .top -background blue -width 100 -height 100
panedwindow .root -orient vertical -showhandle true -background red
frame .bot -background green -width 100 -height 100
.root add .top .bot
pack .root -expand true -fill both
为什么会这样?真的只能panedwindow
管理在它之后创建的小部件吗?我已经看到打包器的类似行为,它会拒绝打包-in
稍后出现的小部件。