- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想同时创建 2 个独立的窗口。一个窗口将能够容纳一个可观察的列表,另一个窗口将显示所选列表对象的属性。我正在尝试将 ListView 创建为通用列表,并将其与对象特定窗口(例如,客户属性、啤酒属性、商店属性)结合起来。
简而言之:如果用户单击“客户”,它会显示包含所有客户的 ListView ,并且第一个客户的属性会显示在单独的、特定于客户的窗口中。
如果用户单击“Stores”,它会显示相同的 ListView ,但会填满商店。特定于商店的窗口也会打开,其中包含第一个商店的属性。
我尝试使用 2 个 FXMLLoader,但出于某种原因我不知道如何使用它们。我在 JavaFX 方面表现平平,所以我什至不知道从哪里开始。这就是我得到的,但它似乎是错误的。
FXMLLoader loader = new FXMLLoader(getClass().getResource("List.fxml"));
loader.setRoot(this);
loader.setController(this);
FXMLLoader loader2 = new FXMLLoader(getClass().getResource("StoreWindow.fxml"));
loader2.setRoot(this);
loader2.setController(this);
try {
loader.load();
loader2.load();
} catch (IOException ex) {
throw new RuntimeException(ex);
}
最佳答案
您基本上必须遵循@Slaw 的说明。创建一个模型
。在两个 Controllers
之间共享 Model
。观察模型的当前 Customer
并做出相应的 react 。 MCVE 下面:
Main Class: (load both stages with the correct Scene. Create model and pass it to both Controllers):
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author sedri
*/
public class JavaFXApplication36 extends Application {
@Override
public void start(Stage stage) {
try {
FXMLLoader listViewFXMLLoader = new FXMLLoader(getClass().getResource("ListViewFXML.fxml"));
Parent listViewRoot = listViewFXMLLoader.load();
ListViewController listViewController = listViewFXMLLoader.getController();
Scene scene1 = new Scene(listViewRoot);
stage.setScene(scene1);
FXMLLoader detailsFXMLLoader = new FXMLLoader(getClass().getResource("DetailsFXML.fxml"));
Parent detailsRoot = detailsFXMLLoader.load();
DetailsController detailsController = detailsFXMLLoader.getController();
Scene scene2 = new Scene(detailsRoot);
Stage stage2 = new Stage();
stage2.setScene(scene2);
DataModel model = new DataModel();
listViewController.initModel(model);
detailsController.initModel(model);
stage.show();
stage2.show();
} catch (IOException ex) {
Logger.getLogger(JavaFXApplication36.class.getName()).log(Level.SEVERE, null, ex);
}
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
Model Class: (Keep up with current Customer and ObservableList of Customer)
import javafx.beans.Observable;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
/**
*
* @author sedrick
*/
public class DataModel {
private final ObservableList<Customer> customerList = FXCollections.observableArrayList(customer -> new Observable[]{customer.nameProperty(), customer.ageProperty()});
private final ObjectProperty<Customer> currentCustomer = new SimpleObjectProperty();
public ObjectProperty<Customer> currentCustomerProperty() {
return currentCustomer;
}
public void setCurrentCustomer(Customer currentCustomer) {
this.currentCustomer.set(currentCustomer);
}
public Customer getCurrentCustomer() {
return this.currentCustomer.get();
}
public ObservableList<Customer> loadCustomers()
{
customerList.add(new Customer("John Doe", 21));
customerList.add(new Customer("Jane Joe", 20));
return customerList;
}
}
Customer Class:
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
/**
*
* @author sedrick
*/
public class Customer {
private final StringProperty name = new SimpleStringProperty();
private final IntegerProperty age = new SimpleIntegerProperty();
public Customer(String name, int age) {
this.name.set(name);
this.age.set(age);
}
public String getName()
{
return this.name.get();
}
public void setName(String name)
{
this.name.set(name);
}
public StringProperty nameProperty()
{
return this.name;
}
public int getAge()
{
return this.age.get();
}
public void setAge(int age)
{
this.age.set(age);
}
public IntegerProperty ageProperty()
{
return this.age;
}
}
ListView Controller: (Initialize model, setup ListView and observe current customer property)
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
/**
*
* @author sedri
*/
public class ListViewController implements Initializable {
@FXML private ListView<Customer> listView;
private DataModel model;
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
public void initModel(DataModel model)
{
// ensure model is only set once:
if (this.model != null) {
throw new IllegalStateException("Model can only be initialized once");
}
listView.getSelectionModel().selectedItemProperty().addListener((obs, oldCustomer, newCustomer) ->
model.setCurrentCustomer(newCustomer));
model.currentCustomerProperty().addListener((obs, oldCustomer, newCustomer) -> {
if (newCustomer == null) {
listView.getSelectionModel().clearSelection();
} else {
listView.getSelectionModel().select(newCustomer);
}
});
listView.setCellFactory(lv -> new ListCell<Customer>() {
@Override
public void updateItem(Customer customer, boolean empty) {
super.updateItem(customer, empty);
if (empty) {
setText(null);
} else {
setText("Name: " + customer.getName() + " Age: " + customer.getAge());
}
}
});
listView.setItems(model.loadCustomers());
}
}
ListView FXML:
<StackPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication36.ListViewController">
<children>
<ListView fx:id="listView" prefHeight="200.0" prefWidth="200.0" />
</children>
</StackPane>
DetailsController:(Initialize model and observe current customer property)
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.TextField;
/**
* FXML Controller class
*
* @author sedri
*/
public class DetailsController implements Initializable {
@FXML TextField tfName, tfAge;
private DataModel model;
/**
* Initializes the controller class.
*/
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
public void initModel(DataModel model) {
// ensure model is only set once:
if (this.model != null) {
throw new IllegalStateException("Model can only be initialized once");
}
this.model = model ;
model.currentCustomerProperty().addListener((observable, oldCustomer, newCustomer) -> {
if(newCustomer == null){
tfName.setText("");
tfAge.setText("");
}
else{
tfName.setText(newCustomer.getName());
tfAge.setText(Integer.toString(newCustomer.getAge()));
}
});
}
}
Details FXML:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.VBox?>
<VBox alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication36.DetailsController">
<children>
<Label text="Name" />
<TextField fx:id="tfName" />
<Label text="Age" />
<TextField fx:id="tfAge" />
</children>
<padding>
<Insets left="20.0" right="20.0" />
</padding>
</VBox>
More info:
@James D answer on Model-View-Controller(MVC) .
GitHub code .
关于JavaFX:一次有 2 个独立的窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55668795/
我如何使用 CQLINQ 获取当前方法的输入参数集合?有像“参数”或“参数”这样的集合,只有“NbParamenter”不适合我的目的。 最佳答案 事实上,CQLinq 还没有这个功能。但是,在许多情
我想知道是否有人知道我的 makefile 中独立的 @ 符号和“dir”命令在这里(第二行和第三行)的作用: $(BUILD)/%.o: %.cpp @mkdir -p $(dir $@)
我想知道是否有人知道我的 makefile 中独立的 @ 符号和“dir”命令在这里(第二行和第三行)的作用: $(BUILD)/%.o: %.cpp @mkdir -p $(dir $@)
我的机器上有带有 4 个 cpu 的 Ubuntu 14.04(nproc 恢复了 4 个)。我安装并执行 Spark Standalone 后(本地),我可以自己定义不同数量的奴隶。例如我想要有4个
我看到所有这些 iPhone 应用程序都带有内置的独立 webDav 服务器。是否有可以集成到现有应用程序中的独立(如在其自己的 IIS 中)C# webDAV 项目。 最佳答案 至少有两个用于 .N
我如何在独立的 Django 应用程序上进行迁移(即不属于任何项目的应用程序)。 例如在以下之后:https://docs.djangoproject.com/en/1.8/intro/reusabl
我目前正在使用 tortoiseSVN 对本地编程文件进行版本控制。我不运行 SVN 服务器,因为可以直接使用 tortoiseSVN(例如 http://invalidlogic.com/2006/
我有一些 Bootstrap 代码,当用户查看它时,它可以很好地为进度条部分设置动画。 然而它动画 全部 页面中的进度条而不是动画仅限 该查看部分中的进度条。结果,当用户转到进度条的另一部分时,这些已
我认为我们在 iOS 13.2/13.3 中发现了关于在独立模式下运行的 PWA 的回归。 由于在 iOS PWA 上无法访问 getUserMedia() 我们依赖 capture HTML5 输入
我有一个每周从系统运行一次的报告,并将数据导出到 Excel 文档中。我已经设置了将数据导出到 Excel 的工具,以便在格式化方面做得很好,但是一旦数据进入 Excel,我还需要做更多的事情。 是否
//值数组的格式为 { "var1", "val1", "var2", "val2",.. } public static String replaceMethod(String template,
当我在 eclipse 中运行我的项目时,它工作正常,当我将它导出为独立 jar 时,它会滞后。我使用相同的 vmargs,在 Eclipse 中尝试了 3 种不同的导出设置,似乎没有任何帮助 最佳答
我了解到 Java EE 中我非常喜欢的注释基础配置(@Resource)功能。然后我注意到注释实际上是 Java SE 的一部分。 所以我想知道是否可以将它与 Java SE 一起使用。我当然可以在
我无法理解为什么这种关系没有被持久化,并且程序不会正常退出,但在 Eclipse 中继续运行。 下面是我的代码,排除了包名: 主要: import java.io.BufferedInputStrea
我有一个在 Linux + Java 6 上运行的独立 Java 应用程序,它似乎被卡住了(没有生成日志)我如何在不使用任何其他工具(例如 jstack)的情况下获取此线程转储 尝试了以下命令,但它们
我正在非节点环境中构建应用程序,但我想利用 Babel 的 ES6 转译,以便我可以编写更好的代码并且仍然支持 IE11。 所以我继续包含在这里找到的独立文件: https://github.com/
扩展我对 MySQL 的理解。 1) 是否需要 64 位帮助?我是安装还是单独使用? 2) 如果我打算在 MySQL Community Service 中使用 64 位,它会影响仅提供 32 位的
我有一个独立的 Java 应用程序,我必须为其集成一个规则引擎。我应该使用属性文件或 XML 文件定义规则。我需要规则引擎来读取属性或 XML 文件中定义的这些规则,并相应地在应用程序中实现代码。 任
我是wiremock新手,我正在尝试使用它来记录我负责集成测试的java应用程序的请求和响应。 我知道我的命令将类似于: java -jar wiremock-1.57-standalone.jar
我到处寻找我的问题的解决方案,但我的问题有点具体...我需要有关如何创建独立 radioGroup 列表的建议,例如图示: o item1 • item1' • item2 或 item2' o it
我是一名优秀的程序员,十分优秀!