Hi.  I’m using Tkinter to create a new Radiobutton in Python 3.  However, when 
I create the button, it starts off looking selected instead of unselected 
(though it behaves correctly like an unselected Radiobutton).  So this means 
when I create a group of Radiobuttons they all look selected when my program 
begins.  This happens under both Windows XP and Windows 7.
 
Here’s a super simple example program that produces this result:
 
from tkinter import *
 
root = Tk()
root.grid()
 
button = Radiobutton(root, text = "Test RadioButton")
button.grid(row = 0, column = 0, sticky = W)          
 
root.mainloop()
 
Does anyone know how to solve this issue?  Anyone know if this is a bug being 
worked on?
 
Thanks,
 
--Bob
                                          
_________________________________________________________________
Hotmail: Powerful Free email with security by Microsoft.
http://clk.atdmt.com/GBL/go/171222986/direct/01/
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to