Merge pull request #1587 from PySimpleGUI/Dev-latest
Get method for the Radio Element
This commit is contained in:
commit
6b27f50b93
|
@ -1121,6 +1121,11 @@ class Radio(Element):
|
|||
""" """
|
||||
self.TKIntVar.set(0)
|
||||
|
||||
def Get(self):
|
||||
""" """
|
||||
return self.TKIntVar.get() == self.EncodedRadioValue
|
||||
|
||||
|
||||
def __del__(self):
|
||||
""" """
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue