Skip to content

Instantly share code, notes, and snippets.

@KingC100
Created December 18, 2013 14:40
Show Gist options
  • Save KingC100/8023400 to your computer and use it in GitHub Desktop.
Save KingC100/8023400 to your computer and use it in GitHub Desktop.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package fxerycton;
import fxerycton.AppUtil.LovelyMyAngelAyase;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.*;
import javafx.scene.image.ImageView;
/**
*
* @author kiichi
*/
public class FXEryctonController implements Initializable {
/**
* Containers-ID.
*/
// MenuBar.
@FXML MenuBar menuBar;
// ContextMenu
@FXML MenuItem Ayase;
// Label.
@FXML Label lbl_Own;
@FXML Label lbl_Rival;
@FXML Label lbl_Rival_Name;
@FXML Label lbl_Elect_Own;
@FXML Label lbl_Elect_Rival;
@FXML Label lbl_RateRecord;
@FXML Label lbl_MessageArea;
// TextField.
@FXML TextField txb_Own_1;
@FXML TextField txb_Own_2;
@FXML TextField txb_Own_3;
@FXML TextField txb_Own_4;
@FXML TextField txb_Own_5;
@FXML TextField txb_Own_6;
@FXML TextField txb_Rival_1;
@FXML TextField txb_Rival_2;
@FXML TextField txb_Rival_3;
@FXML TextField txb_Rival_4;
@FXML TextField txb_Rival_5;
@FXML TextField txb_Rival_6;
@FXML TextField txb_Elect_Own_1;
@FXML TextField txb_Elect_Own_2;
@FXML TextField txb_Elect_Own_3;
@FXML TextField txb_Elect_Own_4;
@FXML TextField txb_Elect_Rival_1;
@FXML TextField txb_Elect_Rival_2;
@FXML TextField txb_Elect_Rival_3;
@FXML TextField txb_Elect_Rival_4;
@FXML TextField txb_Rival_Name;
@FXML TextField txb_Rival_RateRecord;
// ImageView.
@FXML ImageView img_Own_1;
@FXML ImageView img_Own_2;
@FXML ImageView img_Own_3;
@FXML ImageView img_Own_4;
@FXML ImageView img_Own_5;
@FXML ImageView img_Own_6;
@FXML ImageView img_Rival_1;
@FXML ImageView img_Rival_2;
@FXML ImageView img_Rival_3;
@FXML ImageView img_Rival_4;
@FXML ImageView img_Rival_5;
@FXML ImageView img_Rival_6;
@FXML ImageView img_Elect_Own_1;
@FXML ImageView img_Elect_Own_2;
@FXML ImageView img_Elect_Own_3;
@FXML ImageView img_Elect_Own_4;
@FXML ImageView img_Elect_Rival_1;
@FXML ImageView img_Elect_Rival_2;
@FXML ImageView img_Elect_Rival_3;
@FXML ImageView img_Elect_Rival_4;
// RadioButton.
@FXML RadioButton rdb_Result_Win;
@FXML RadioButton rdb_Result_Lose;
@FXML RadioButton rdb_Result_Cut;
// Button.
@FXML Button btn_Enter;
@FXML
public void OnEntered(ActionEvent event){
/***
* EnterProcess実行
*/
}
@FXML
public void Ayase(ActionEvent event){
/**
* ayase
*/
LovelyMyAngelAyase ayase = new LovelyMyAngelAyase();
ayase.HayamiSaori();
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment