1

我想创建获取单选按钮并在其他单选按钮被标记时标记的方法。这是我漂亮的 gui 示例菜单:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<nifty>
    <useControls filename="nifty-default-controls.xml"/>
    <useStyles filename="nifty-default-styles.xml"/>
    <screen id="ustawieniaWyswietlania" controller="PakietyPodstawowe.Kontroler.KontrolerUstawieńWyświetlania">
        <layer id="GLayer0" childLayout="center">
            <control id="r1" name="radioButtonGroup"/>
            <panel id="GPanel0" childLayout="absolute" width="100%" x="210" y="257" style="nifty-panel-simple" height="100%">
                <control name="radioButton" id="GRadioButton0" group="r1" x="193" y="236"/>
                <control name="radioButton" id="GRadioButton1" group="r1" x="327" y="244"/>
            </panel>
        </layer>
    </screen>
</nifty>

我的方法:

@NiftyEventSubscriber(pattern="GRadioButton.*")
public void setSelected(final String id, final RadioButtonStateChangedEvent event) {
        IO.drukujL(event.getRadioButton().getElement().getId());
        Element element = screen.findElementByName("GRadioButton1");
//      element.setMarkted(); this method I can't find
}

也许这个问题很简单,但我不知道如何在标记 GRadioButton0 时自动标记 GRadioButton1。

4

1 回答 1

1

您需要使用不同的方法来访问 RadioButton 控件 API。

使用类似的东西:

RadioButton radioButton = screen.findNiftyControl("GRadioButton1", RadioButton.class);
radioButton.select();

您可能想阅读Nifty GUI PDF 手册中的“11 控件”一章。wiki 中有Radiobutton 参考, RadioButton JavaDoc也可能有帮助。

请注意,wiki 是为 1.3.x 编写的,但大部分信息对 1.4.x 仍然有效

于 2015-05-28T10:00:41.287 回答