轻灵,内省,质朴,有为

怎么居中放置一个Tk窗口

+1 投票

@飞觞醉月 问起这个问题。

Code: wm-center.tcl
proc wm_center {win} {
  set w  [winfo width $win]
  set h  [winfo height $win]
  set W  [winfo screenwidth  .]
  set H  [winfo screenheight .]
  
  set x [expr {($W-$w)>>1}] 
  set y [expr {($H-$h)>>1}] 

  wm geometry $win +$x+$y
}
最新提问 9月 21, 2015 分类:语法命令 | 用户: 风行水上 (-30 分)

登录 或者 注册 后回答这个问题。

...