-1

嗨,我是一个相对较新的开发人员(大约 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(已分配的值)不会导致在打开窗口时选择第一个选项。我还尝试将变量的 master 设置为 t ( TopLevel) 和TestBed. 我尝试的任何方法似乎都不起作用。有时将鼠标悬停在它们上方会选择所有这些,这似乎有问题。但是,当我单击它们时,无论我根据我在此处和其他网站上找到的答案尝试什么,它们都不会保持选中状态。我是 Python 新手,所以如果我在做一些公然愚蠢或错误的事情,我很抱歉,但我们将不胜感激。

4

1 回答 1

3

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

要进行补救,请在每个单选按钮中添加以下参数:

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

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

参考线程

于 2018-02-20T15:44:30.103 回答