复选框在弹出窗口中始终为0-Tkinter

时间:2019-01-08 08:34:08

标签: python tkinter

我有一个使用Tkinter的GUI,它有一个主屏幕,然后当您按下一个按钮时,会出现一个弹出窗口,您在其中选择一个复选按钮,然后将向您发送一封电子邮件。 不管我做什么,我都无法将checkbutton的值读取为1True,它总是= 0False

这是我的代码:

import tkinter as tk
from tkinter import *
import time
root = tk.Tk()
root.title('Status')
CheckVar1 = IntVar()
def email():
    class PopUp(tk.Tk):
        def __init__(self):
            tk.Tk.__init__(self)

            popup = tk.Toplevel(self, background='gray20')
            popup.wm_title("EMAIL")
            self.withdraw()
            popup.tkraise(self)
            topframe = Frame(popup, background='gray20')
            topframe.grid(column=0, row=0)

            bottomframe = Frame(popup, background='gray20')
            bottomframe.grid(column=0, row=1)

            self.c1 = tk.Checkbutton(topframe, text="Current", variable=CheckVar1, onvalue=1, offvalue=0, height=2, width=15, background='gray20', foreground='snow', selectcolor='gray35', activebackground='gray23', activeforeground='snow')
            self.c1.pack(side="left", fill="x", anchor=NW)           
            label = tk.Label(bottomframe, text="Please Enter Email Address", background='gray20', foreground='snow')
            label.pack(side="left", anchor=SW, fill="x", pady=10, padx=10)
            self.entry = tk.Entry(bottomframe, bd=5, width=35, background='gray35', foreground='snow')
            self.entry.pack(side="left", anchor=S, fill="x", pady=10, padx=10)
            self.button = tk.Button(bottomframe, text="OK", command=self.on_button, background='gray20', foreground='snow')
            self.button.pack(side="left", anchor=SE, padx=10, pady=10, fill="x")

        def on_button(self):
            address = self.entry.get() 
            print(address)
            state = CheckVar1.get()
            print (state)
            time.sleep(2)
            self.destroy()


    app = PopUp()
    app.update()

tk.Button(root, 
            text="EMAIL", 
            command=email, 
            background='gray15', 
            foreground='snow').pack(side=tk.BOTTOM, fill="both", anchor=N)

screen = tk.Canvas(root, width=400, height=475, background='gray15')
screen.pack(side = tk.BOTTOM, fill="both", expand=True)


def latest():
    #Other code
    root.after(300000, latest)
root.mainloop()

弹出窗口运行正常,输入电子邮件将打印出来,但复选框的值始终为0。

我尝试过:

CheckVar1 = tk.IntVar()-没有成功

self.CheckVar1self.CheckVar1.get()-没有成功

删除self.withdraw()-失败

我在脚本中只有一个root.mainloop(),我将app.update()用于弹出窗口,因为没有它,它将无法打开。

我已检查了以下现有问题以寻求解决方案,但没有一个帮助您: 自取-Can't make tkinter checkbutton work normally when running as script Self.CheckVar1-TKInter checkbox variable is always 0 mainloop()仅一个实例-Python tkinter checkbutton value always equal to 0

我也检查了非常相似的问题,但我不想全部发布。

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

问题是您有两个根窗口。每个根窗口都有其自己的内部tcl解释器,而一个窗口小部件和tkinter变量对另一个窗口完全不可见。您正在第一个根窗口中创建IntVar,然后尝试将其与第二个根窗口中的复选按钮关联。这行不通。在tkinter程序中,您应始终始终只有一个Tk实例。

答案 1 :(得分:0)

由于范围可变

尝试将 CheckVar1 = IntVar()放入类中

像这样与自己一起使用

self.CheckVar1 = tk.IntVar() # object of int

self.CheckVar1.set(1) # set value

variable=self.CheckVar1 # passing to the checkbutton as parameter 

state = self.CheckVar1.get() # getting value