use self.my_var.set(1) to set the radio camera with text='5' as the standard RadioButton.
To get the selected, you must call the function
rb1 = ttk.Radiobutton(self.frame, text='5', variable=self.my_var, value=5,command=self.selected) rb2 = ttk.Radiobutton(self.frame, text='10', variable=self.my_var, value=10,command=self.selected) rb3 = ttk.Radiobutton(self.frame, text='15', variable=self.my_var, value=15,command=self.selected) self.rb1.grid(row=0) self.rb2.grid(row=1) self.rb3.grid(row=2) def selected(self): if self.my_var.get()==5: "do something" elif self.my_var.get()==10: "do something" else: "do something"
Gogo source share