web-dev-qa-db-ja.com

Tkinterウィンドウのサイズを変更できないようにする方法は?

Tkinterモジュールを使用して静的(サイズ変更不可)ウィンドウを作成するPythonスクリプトが必要です。

私は非常に単純なTkinterスクリプトを持っていますが、サイズを変更したくありません。 Tkinterウィンドウのサイズ変更を防ぐにはどうすればよいですか?私は正直に何をすべきかわかりません。

これは私のスクリプトです:

from tkinter import *
import ctypes, os

def callback():
    active.set(False)
    quitButton.destroy()
    JustGo = Button(root, text=" Keep Going!", command= lambda: KeepGoing())
    JustGo.pack()   
    JustGo.place(x=150, y=110)
    #root.destroy()         # Uncomment this to close the window

def sleep():
    if not active.get(): return
    root.after(1000, sleep)
    timeLeft.set(timeLeft.get()-1)
    timeOutLabel['text'] = "Time Left: " + str(timeLeft.get())  #Update the label
    if timeLeft.get() == 0:                                     #sleep if timeLeft = 0
        os.system("Powercfg -H OFF")
        os.system("rundll32.exe powrprof.dll,SetSuspendState 0,1,0")

def KeepGoing():
    active.set(True)   
    sleep()
    quitButton1 = Button(root, text="do not sleep!", command=callback)
    quitButton1.pack()   
    quitButton1.place(x=150, y=110)

root = Tk()
root.geometry("400x268")
root.title("Alert")
root.configure(background='light blue')

timeLeft = IntVar()
timeLeft.set(10)            # Time in seconds until shutdown

active = BooleanVar()
active.set(True)            # Something to show us that countdown is still going.

label = Label(root, text="ALERT this device will go to sleep soon!",   fg="red")
label.config(font=("Courier", 12))
label.configure(background='light blue')
label.pack()
timeOutLabel = Label(root, text = 'Time left: ' + str(timeLeft.get()),     background='light blue') # Label to show how much time we have left.
timeOutLabel.pack()
quitButton = Button(root, text="do not sleep!", command=callback)
quitButton.pack()   
quitButton.place(x=150, y=110)



root.after(0, sleep)
root.mainloop()  
24
IDK anything

ルートウィンドウのresizableメソッドは、ウィンドウがXおよびY方向にサイズ変更可能かどうかを記述する2つのブール値パラメーターを取ります。サイズを完全に固定するには、両方のパラメーターをFalseに設定します。

root.resizable(False, False)
50
Bryan Oakley

以下も使用できます。

root.resizable(0, 0)

0はPython 3。

3
Camal Muradov