如何根据 python 上 tkinter 中的用户输入生成弹出消息?

How to produce a popup message depending on user input in tkinter on python?

我正在尝试创建一个系统,用户可以使用两个滑块输入当前温度和所需温度。当通过按下按钮 "Set" 确认两个温度时,应根据用户输入显示一条弹出消息。

我曾尝试生成此代码,但单击 "Set" 按钮后我的代码似乎没有生成任何内容。任何帮助将非常感激!

class StartPage(tk.Frame):

    def __init__(self, parent, controller):

        tk.Frame.__init__(self, parent)

        label1=ttk.Label(self,text="Smart Thermostat",font=LARGE_FONT)
        label1.pack(pady=10, padx=10)

        label2 = ttk.Label(self, text="Current Temperature:",font=MEDIUM_FONT)
        label2.pack(pady=10, padx=10)

        slider1 = tk.Scale(self, from_=10, to = 30, orient=HORIZONTAL)
        slider1.pack()

        label3 = ttk.Label(self, text="Set to:",font=MEDIUM_FONT)
        label3.pack(pady=10, padx=10)

        slider2 = tk.Scale(self, from_=18, to = 25, orient=HORIZONTAL)
        slider2.pack()

        def popupmsg1(msg):
            popup1=tk.Tk()
            popup1.wm_title("!")
            label4 = ttk.Label(popup1, text="Turn heater on?", font = MEDIUM_FONT)
            label4.pack(side = "top", fill = "x", pady=10)
            button2=ttk.Button(popup1, text="Okay", command = popup1.destroy)
            button2.pack()
            popup1.mainloop()

        def popupmsg2(msg):
            popup2=tk.Tk()
            popup2.wm_title("!")
            label5 = ttk.Label(popup2, text="Turn cooler on?", font = MEDIUM_FONT)
            label5.pack(side = "top", fill = "x", pady=10)
            button3=ttk.Button(popup2, text="Okay", command = popup2.destroy)
            button3.pack()
            popup2.mainloop()    

        def popupmsg():
            temp=int(slider2.get())
            need=int(slider1.get())
            if temp<need:
                popup1=tk.Tk()
            else:
                popup2=tk.Tk()


        button1=tk.Button(self, text="Set", command= lambda: popupmsg)
        button1.pack(pady=10, padx=10)

您应该能够使用以下信息创建消息/对话:

 # Python 3
 from tkinter import messagebox

 # Python 2
 import tkMessageBox as messagebox

 if case 1:
      messagebox.showinfo("title 1", "message 1")
 else:
      messagebox.showinfo("title 2", "message 2")

您通常只会为真正自定义的信息框生成自定义 windows / windows 执行自己的逻辑。对于简单消息,使用内置消息框就足够了。即使那样,您也应该只使用 Toplevel 而不是生成全新的 tk.Tk 实例。 Tk 只是一个处理其中事件的大主循环(因此使用 .mainloop()....)。

您选择如何向用户显示消息实际上是开放式的,您甚至可以制作一个标签来更新文本并适当地显示/隐藏它等等。

如果你想做自定义字体等等,它看起来像......而不深入研究你的所有代码......你实际上必须走 Toplevel / widget 路线。