Package org.controlsfx.control

Examples of org.controlsfx.control.SegmentedButton


        });
        final ToggleButton failToggleButton = new ToggleButton("FAIL");
        failToggleButton.setOnAction((ActionEvent t) -> {
            indicator.setResult(Indicator.Result.FAIL);
        });
        SegmentedButton segmentedButton = new SegmentedButton(passToggleButton, indetToggleButton, failToggleButton);
        indetToggleButton.setSelected(true);

        Button passButton = new Button("PASS");
        passButton.setOnAction((ActionEvent t) -> {
            indicator.setPass(Boolean.TRUE);
View Full Code Here

TOP

Related Classes of org.controlsfx.control.SegmentedButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.