Created
December 19, 2013 15:23
-
-
Save KingC100/8040866 to your computer and use it in GitHub Desktop.
対戦種別切り替え
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@FXML | |
public void SelectedToSingleBattle(ActionEvent event){ | |
txb_Elect_Own_4.setDisable(true); | |
txb_Elect_Rival_4.setDisable(true); | |
rb.setBattleType(1); | |
} | |
@FXML | |
public void SelectedToDoubleBattle(ActionEvent event){ | |
txb_Elect_Own_4.setDisable(false); | |
txb_Elect_Rival_4.setDisable(false); | |
rb.setBattleType(2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment