Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のプログラムをPythonでロックされたサイズにする方法があるかどうか興味がありました。つまり、ウィンドウを拡大したり小さくしたりすることはできません。うまくいけば、私は自分自身を明確にし、Pythonで同様のことが可能になることを願っています。ありがとう
root.resizable(0, 0) #or root.resizable(width=FALSE, height=FALSE)
パイのように簡単!
または、次のようにすることもできます。
root.minsize(min_x, min_y) root.maxsize(max_x, max_y)
ウィンドウの側面をつかむことはできますが、伸ばすことはできません。