1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| //////////////////////////////////////////////////////////
//// 1er bouton et label //////////////////////////////
////////////////////////////////////////////////////////
@FXML
private Button changerGrille;
private Label afficheGrilleSudoku;
public void afficherGrille(ActionEvent event)
{
resolutionGrilleSudoku();
}
private int[][] resolutionGrilleSudoku()
{
...
...
return grille;
}
//////////////////////////////////////////////////////////
/////////// fin 1er bouton et label ////////////////////
////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//// bouton niveau 1 /// //////////////////////////////
////////////////////////////////////////////////////////
@FXML
private Button niveau_1
public void buttonNiveau_1 (ActionEvent event)
{
}
//////////////////////////////////////////////////////////
/////////// fin bouton niveau 1 // ////////////////////
//////////////////////////////////////////////////////// |