我正在尋找javafx JOptionPane等價物,並且我找到了一個很棒的類Dialog。所以在本教程中,導師使用:Dialog<Pair<String,String>>
來獲得兩個字符串輸入字段,從這裏我想知道是否可以使用類說:Dialog<Product>
。如果可能的話,我應該如何寫這個課程是他們的任何特定模式或情節? 謝謝是否可以在javafx對話框中使用特定的類?
2
A
回答
2
是的,你可以做到這一點。我的回答是立足於:
https://examples.javacodegeeks.com/desktop-java/javafx/dialog-javafx/javafx-dialog-example/
假設你的產品有兩個字段,可以通過構造函數傳遞:
String name;
float price;
您可以用這樣的方式來創建你的對話:
Dialog<Product> dialog = new Dialog<>();
dialog.setTitle("Product Dialog");
dialog.setResizable(true);
Label nameLabel = new Label("Name: ");
Label priceLabel = new Label("Price: ");
TextField nameField = new TextField();
TextField priceField = new TextField();
GridPane grid = new GridPane();
grid.add(nameLabel, 1, 1);
grid.add(nameField, 2, 1);
grid.add(priceLabel, 1, 2);
grid.add(priceField, 2, 2);
dialog.getDialogPane().setContent(grid);
ButtonType saveButton = new ButtonType("Save", ButtonData.OK_DONE);
dialog.getDialogPane().getButtonTypes().add(saveButton);
dialog.setResultConverter(new Callback<ButtonType, Product>() {
@Override
public Product call(ButtonType button) {
if (button == saveButton) {
String name = nameField.getText();
Float price;
try {
price = Float.parseFloat(priceField.getText());
} catch (NumberFormatException e) {
// Add some log or inform user about wrong price
return null;
}
return new Product(name, price);
}
return null;
}
});
Optional<Product> result = dialog.showAndWait();
if (result.isPresent()) {
Product product = result.get();
// Do something with product
}
相關問題
- 1. 在Sql Service Broker中,是否可以使用特定的conversation_handle創建對話框
- 2. 是否可以在javafx的對話框中使用路徑轉換?
- 3. 是否可以在對話框彈出窗口中使用iscroll?
- 4. 使用角度材質,是否可以關閉特定對話框
- 5. 是否可以刪除Android自定義對話框的框架?
- 6. 是否可以在AS3中使用特定類引用類型的變量?
- 7. JavaFX對話框
- 8. 是否可以自定義對話框主題的Android API 8
- 9. 是否可以使用IntelliJ插件啓動.fxml(對話框)?
- 10. 是否可以使用JavaScript生成保存文件對話框?
- 11. 是否可以使用jQuery Greedy Droppable對話框?
- 12. 是否可以在Visual Studio擴展中創建類似於Intellisense對話框的模式對話框?
- 13. 是否可以指定要從資源文件使用的COM對話框?
- 14. 如何在JavaFX中使用FXML創建自定義對話框?
- 15. 是否可以在觸摸UI對話框中包含文件?
- 16. 是否可以在alert()對話框中顯示上標字符?
- 17. 是否可以在gVIM中顯示多選對話框?
- 18. 是否可以在Service [android app]中顯示對話框?
- 19. 是否可以在wix中添加卸載對話框?
- 20. 對於特定的列表工作,是否可以使用@ user'%'?
- 21. ViewPager可以在自定義對話框中使用嗎?
- 22. 在J2ME中,是否可以使用Yes&NO命令來操作Alert對話框?
- 23. 是否可以使用WINAPI或GDI +在C++中創建CommandLink對話框?
- 24. 是否可以抑制Extendscript中的CheckOut/CheckIn對話框?
- 25. 是否可以在角度js中禁用ng對話框中的關閉?
- 26. Eclipse Luna - 是否可以使「查找/替換」對話框透明?
- 27. 使用JavaFX確認對話框
- 28. 是否可以指示ServicePartitionClient與服務結構中的特定節點對話?
- 29. 是否可以在自定義的AuthorizeAttribute類中使用RedirectToAction()?
- 30. 在用於Angular4的Material中,是否可以打開嵌套對話框?
這個想法超出了我的想法,因爲我已經使用JAVAFX和JPA之間的適配器模式 –