📌  相关文章
📜  获取窗口 tkinter 的大小 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:26.258000             🧑  作者: Mango

代码示例3
window = Tk()     # or window = TopLevel()
 # "350x150" == window size (350 pixels wide and 150 pixels high)
 # "+220+80" == window position (220 pixels from the left screen margin and
 #                 80 pixels from the top screen margin
  window.geometry("350x150+220+80")