📌  相关文章
📜  tkinter 窗口大小位置 - Python 代码示例

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

代码示例1
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")