gpt4 book ai didi

java - 管理 JavaFX MenuBar 的运行时行为

转载 作者:行者123 更新时间:2023-12-02 06:20:34 26 4
gpt4 key购买 nike

我有一个 BorderPane,在上面放置了一个 MenuBar。在 BorderPane 的中心,我根据所选的 MenuItem 显示不同的 AnchorPanes。到目前为止,一切都很好。

现在,如何确保菜单更改行为以响应子 AnchorPane 中选择的项目?因此,例如,如果用户选择“编辑”,根据当前突出显示的项目是否是用户帐户、文件等,将会有不同的操作。

到目前为止,我做了一些事情:

BorderPane Controller :

public class MenuTest implements Initializable{
@FXML
private BorderPane borderPaneMain;
@FXML
private AnchorPane anchorPaneMain;
@FXML
private Menu menuEdit;
@FXML
private MenuItem itemEdit;

static String menuMode;
static String entityName;

public MenuTest(){
menuMode ="";
entityName = "";
}

@Override
public void initialize(URL arg0, ResourceBundle arg1) {
AnchorPane anchor;
try {
anchor = (AnchorPane) new FXMLLoader().load(getClass().getResource("views/MainView.fxml"));
borderPaneMain.setCenter(anchor);
} catch (IOException e) {
e.printStackTrace();
}
}

protected static void setMenuMode(String menuMd, String entityNm){
entityName = entityNm;
menuMode = menuMd;
}

@FXML
private void onEditClick(){
if(entityName.equals(AnchorTest.FILE)){
//Launches correct edit view
new FXMLLoader().load(getClass().getResource("views/EditFile.fxml"));
//Passes the name of the entity so that the controller can retrieve its data
FileEditController.setFile(entityName);
}else if(entityName.equals(AnchorTest.PERSON)){
new FXMLLoader().load(getClass().getResource("views/EditPerson.fxml"));
PersonEditController.setFile(entityName);
}
}
}

子 AnchorPane Controller :

public class AnchorTest implements Initializable{

public static final String PERSON = "PERSON";
public static final String FILE = "FILE";

ObservableList<String> peopleList;
ObservableList<String> fileList;

@FXML
private ListView<String> listPeople;
@FXML
private ListView<String> listFiles;

@Override
public void initialize(URL location, ResourceBundle resources) {
peopleList = FXCollections.observableArrayList("Frank","Matin","Anne");
fileList = FXCollections.observableArrayList("hello.txt","holiday.jpg","cv.doc");
listPeople.setItems(peopleList);
listFiles.setItems(fileList);
}

@FXML
private void personSelected(){
MenuTest.setMenuMode(this.PERSON, listPeople.getSelectionModel().getSelectedItem());
}

@FXML
private void fileSelected(){
MenuTest.setMenuMode(this.FILE, listFiles.getSelectionModel().getSelectedItem());
}
}

但是我不确定这是最好的解决方案,特别是考虑到每当我添加新元素类型及其相应的编辑选项时都需要更改 if/elseif 语句。那么有什么办法可以让我做得更好吗?

最佳答案

我认为,如果您的应用程序只有由 AnchorPane 表示的几种(2-4)种不同类型的“事物”,那么您的方法完全没问题。您的方法的替代方法是 state pattern 。在这种情况下,您当前选择的“项目类型”将是您所在的州。

关于java - 管理 JavaFX MenuBar 的运行时行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21067673/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com