看看你是否看图像,我只能在橙色区域点击时右击并获得上下文菜单。当我点击整个对象时(例如进度条等),我希望能够右键单击并获取上下文菜单。橙色中的所有项目都使用列表视图显示,我使用Hbox来组织它们,因此复选框和进度条可以在某行上。我尝试了这个答案Javafx ListView ContextMenu,但它并没有真正帮助。
这是我的代码
// Declare list that will hold the item
ObservableList<HBox> itemList = FXCollections.observableArrayList();
// Declare List View that will contain all the items
ListView itemlistView = new ListView<>();
// Get the items within the week
VBitem.displayByWeek();
// Add the items to the item list
for (int i = 0; i < VBitem.weekList.size(); i++) {
itemList.add(VBitem.weekList.get(i).display());
}
// Add the items to the list view
itemlistView.setitems(itemList);
// Style the list
itemlistView.getStylesheets().add(getClass().getResource("Main.css").toExternalForm());
// Add the list view to the scroll pane
fx_content_scroll.setContent(itemlistView);
itemlistView.setCellFactory(ly -> {
ListCell<HBox> cell = new ListCell<>();
ContextMenu contextMenu = new ContextMenu();
// Menu items
Menuitem editMenu = new Menuitem("Edit");
Menuitem deleteMenu = new Menuitem("Delete");
//System.out.println("Cell " + cell.getitem().item.info());
editMenu.textProperty().bind(Bindings.format("Edit \"%s\"",cell.itemProperty()));
//edititem.textProperty().bind(Bindings.format("Edit \"%s\"", cell.itemProperty()));
//editMenu.textProperty().bind(cell.itemProperty().asString());
editMenu.setOnAction(event -> {
System.out.println("HI "+cell.itemProperty());
//System.out.println("Just edited "+cell.getitem().item.info());
System.out.println("Editing");
});
// Add menu items to ContextMenu
contextMenu.getitems().addAll(editMenu, deleteMenu);
cell.emptyProperty().addListener((obs, wasEmpty, isNowEmpty) -> {
if (isNowEmpty) {
cell.setContextMenu(null);
} else {
cell.setContextMenu(contextMenu);
}
});
return cell;
});
答案 0 :(得分:1)
根据我的理解,您希望在包含CheckBox和ProgressBar的窗格内的任何位置显示ContextMenu。将ContextMenu添加到Control是直截了当的;你使用Control.setContextMenu(...);
方法,但是,HBox是一个窗格,而不是一个控件。
要将一个ContextMenu添加到HBox,您可以使用Node.setOnContextMenuRequested(...)
方法在请求ContextMenu时接收事件。在此期间,您可以在活动地点显示上下文菜单,从而获得所需的效果。
HBox box = new HBox();
box.getChildren().addAll(...);
MenuItem editMenu = new MenuItem("Edit");
editMenu.setOnAction(e -> {
// Do something
});
MenuItem deleteMenu = new MenuItem("Delete");
deleteMenu.setOnAction(e -> {
// Do something
});
ContextMenu menu = new ContextMenu(editMenu, deleteMenu);
box.setOnContextMenuRequested(e -> {
menu.show(box.getScene().getWindow(), e.getScreenX(), e.getScreenY());
});
这将在用于组织CheckBox和ProgressBar的HBox中的任何位置打开ContextMenu。这可以很容易地调整到适合您想要的区域。