Tkinter Python RadioButton没有选择

时间:2018-02-20 14:26:56

标签: python python-3.x tkinter radio-button toplevel

您好,我是一个相对较新的开发人员(大约1年的java,几周前刚刚开始使用python),并且无法在python中使用单选按钮处理顶层窗口。我在这里搜索了不同的问题和答案,并尝试了其中几个,但似乎都没有。以下是相关的代码:

class MPTest(TestBed.Frame):
   def __init__(self, master=NONE):
       TestBed.Frame.__init__(self, master)
       self.createWidgets()

   def createWidgets(self):
      ucThree = Button(root, text='Bids', font='Jokerman', 
                       fg='white', bg='royal blue',
                       command=self.BidWindow)
      ucThree.grid(row=2)

   def BidWindow(self):
       t = TestBed.Toplevel(self)
       t.wm_title("Bid Info")
       t.configure(background="navy")
       v = IntVar()
       v2 = IntVar()
       bidtypelabel = Label(t, text='Bid Type: ', fg='white', bg='navy')
       bidtypelabel.grid(row=0)
       realtime = Radiobutton(t, text='Real Time', variable=v, value=1, 
                             fg='white', bg='navy')
       realtime.grid(row=1)
       priority = Radiobutton(t, text='Priority', variable=v, value=2, 
                             fg='white', bg='navy')
       priority.grid(row=2)
       listsearch = Radiobutton(t, text='List Search', variable=v, value=3, 
                                fg='white', bg='navy')
       listsearch.grid(row=3)
       bidactionlabel = Label(t, text='Action: ', fg='white', bg='navy')
       bidactionlabel.grid(row=0, column=1)
       acceptbid = Radiobutton(t, text='Accept Bid', variable=v2, value=1, 
                               fg='white', bg='navy')
       acceptbid.grid(row=1, column=1)
       rejectbid = Radiobutton(t, text='Reject Bid', variable=v2, value=2, 
                               fg='white', bg='navy')
       rejectbid.grid(row=2, column=1)
       submit = Button(t, text='Submit', fg='white', bg='royal blue')
       submit.grid(row=4, column=2)


root = TestBed.Tk()
root.configure(background="navy")
root.rowconfigure((0, 1, 2, 3, 4, 5, 6, 7, 8, 9), weight=1, pad=50)
root.columnconfigure(1, weight=1, pad=200)
app = MPTest(master=root)

app.mainloop()

我已经尝试将变量设置为0和1,两者都在IntVar()内,然后尝试在下一行设置后设置它。但是,这些都不允许单选按钮为selectable并将它们设置为1(已分配的值)不会导致在打开窗口时选择第一个选项。我也尝试将变量的主数据设置为t(TopLevel)和TestBed。我没有尝试似乎工作。有时候盘旋在它们上面会选择所有这些,这看起来很奇怪。但是,当我点击它们时,无论我根据我在这里和其他网站上找到的答案尝试什么,它们都不会保持选择状态。我是Python的新手,所以如果我做了一些明显愚蠢或错误的事情,我很抱歉,但任何帮助都会受到赞赏。

1 个答案:

答案 0 :(得分:1)

问题是fg='white' param与单选按钮的背景颜色发生碰撞(我看到的是白色,我认为这与你的情况相同)。选择正在发生,它只是在白色背景上绘制一个白点,所以你看不到它。

要解决此问题,请在每个单选按钮中添加以下参数:

selectcolor='navy'
# or any colour of your preference that highlights the white dot

现在您的单选按钮将具有相同的背景颜色,白色将突出显示。

Reference thread