我有一个带有2个ComboBox的应用程序,我想将用户的选择返回到变量中。我该怎么办? 这是我的控制器类:
package ch.makery.adress;
import java.awt.FileDialog;
import javafx.fxml.Initializable;
import java.net.URL;
import java.util.ResourceBundle;
import javax.swing.JFrame;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TextField;
public class HexaController implements Initializable {
static JFrame fileDialog;
@FXML
private ComboBox<String> hexa;
ObservableList<String> list = FXCollections.observableArrayList();
@FXML
private TextField entree;
@FXML
private TextField excel;
@FXML
private TextField sortie;
@FXML
private void dar(ActionEvent event){
FileDialog fd1=new FileDialog(fileDialog,"Choisissez un fichier d'entree",FileDialog.LOAD);
fd1.setDirectory("C:\\");
fd1.setVisible(true);
String filename1=fd1.getFile();
String Directory1=fd1.getDirectory();
String path1=Directory1 + filename1;
entree.setText(path1);
}
@FXML
private void modele(ActionEvent event){
JFrame parentFrame=new JFrame();
FileDialog filechooser = new FileDialog (parentFrame, "Choisir un modèle Excel à copier",FileDialog.LOAD);
filechooser.setDirectory("C:\\");
filechooser.setVisible(true);
String directory_copy = filechooser.getDirectory();
String name_copy= filechooser.getFile();
String path_copy = (directory_copy+name_copy);
excel.setText(path_copy);
}
@FXML
private void sortie (ActionEvent event){
JFrame parentFrame2=new JFrame();
FileDialog filechooser2 = new FileDialog (parentFrame2, "Choisir une destination d'enregistrement",FileDialog.SAVE);
filechooser2.setDirectory("C:\\");
filechooser2.setVisible(true);
String directory_save = filechooser2.getDirectory();
String name_save= filechooser2.getFile();
String path_save = (directory_save+name_save+".xls");
sortie.setText(path_save);
}
@FXML
private void annuler (ActionEvent event){
System.exit(0);
}
@FXML
private ComboBox<Integer>methode;
ObservableList<Integer>nombre = FXCollections.observableArrayList();
public HexaController(){
}
public void initialize(URL url,ResourceBundle rb){
list.add(new String("OUI"));
list.add(new String("NON"));
hexa.setItems(list);
nombre.add(new Integer(0));
nombre.add(new Integer(1));
nombre.add(new Integer(2));
nombre.add(new Integer(3));
nombre.add(new Integer(4));
nombre.add(new Integer(5));
methode.setItems(nombre);
}
}
我需要使用该变量来改变应用程序的工作方式。并且在&#34;方法&#34; combobox我想要一个带有许多TextField的新窗口。例如如果用户选择3,它将打开一个带有3个textField的新窗口或(如果可以在组合框下方添加3个TestField) 感谢
答案 0 :(得分:1)
要在JavaFX中访问ComboBox的选定值,请尝试:
hexa.getSelectionModel().getSelectedItem()
返回所选项目。在您的情况下,它是一个字符串,因为您在行private ComboBox<String> hexa;
我希望我现在理解它。使用你的第二个ComboBox“methode”你想要有“1”,“2”,“3”等选项吗?在那里你可以像我们之前那样获得所选项目:
methode.getSelectionModel().getSelectedItem()
或者,如果您希望程序在“methode”ComboBox上单击某个值时立即打开一个新窗口,则必须添加ValueChangedListener
以在值更改时进行侦听,然后抓取所选项目上面的代码并打开一个新窗口,其中包含所选项目的信息。
为了进一步研究,我建议您从Oracle查看此站点:https://docs.oracle.com/javafx/2/ui_controls/combo-box.htm
也许你有一些有趣的补充。
我希望这会对你有所帮助。
编辑:
静态问题
尝试像这样的somtehing。这对我有用。
private ComboBox<String> hexa;
private Button changeBehavior;
changeBehavior.setOnAction.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent e) {
String userChoice = hexa.getSelectionModel().getSelectedItem()
// do something with that string
}
});
Methode combobox:
private ComboBox<Integer>methode;
methode.setOnAction((event) -> {
int number = methode.getSelectionModel().getSelectedItem()
paneYouWantToChange.getChildren().clear() // removes all displayed item
/*Or if you want to replace somehting in your pane*/
paneYouWantToChange.getChildren().set(indexOfItemToReplace, new TextField())
/*Add new textfields*/
paneYouWantToChange.getChildren().addAll(new TextField(), new TextField())
});