开发者

Buttons in vizard

I am developing a GUI in Vizard in which i am using radio buttons to select correct options, but I have a problem that I cannot solve.

In every group of radio buttons the 1st button always appears to be selected, but is actually not selected. The only way to selec开发者_C百科t it is by choosing another button and then choosing the 1st button again.

Does anyone know how to solve this? I would like that in the beginning none of the buttons are selected.


I don't know Vizard but radio buttons probably have a method or another way of deselecting them similar to radiobutton.deselect() method of Tkinter. Have you looked at their documentation?

Also someone have done this trick, may be you should try it: Create another radio button in that group, let it be selected by default and make it invisible

QuestionBox = vizinfo.add("") #Add the vizinfo object
#Create an invisible Radio button to be the default selected one, so that one of the visible ones must be chosen by the user
invisibleRadio = QuestionBox.add(viz.RADIO, 0, "")  
invisibleRadio.visible(0) #invisible

source: http://forum.worldviz.com/showthread.php?t=1611

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜