- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须将 HBox 添加到 GridPane。如果我将 HBox 添加到同一类中的 GridPane,则系统显示正确。但是当我尝试使用两个类时,仅显示空窗口。我是 javafx 新手。我该怎么做,请帮助我,谢谢。
public class IpCamMainWindow extends Application{
private static ArrayList<IpCamViewer> ipCameraList = new ArrayList<IpCamViewer>();
private static ArrayList<String> urls= new ArrayList<String>();
GridPane grid =null;
private ImageView imgWebCamCapturedImage;
private BufferedImage grabbedImage;
private ObjectProperty<Image> imageProperty = new SimpleObjectProperty<Image>();
private Webcam webCam = null;
private boolean stopCamera = false;
IPview ipCamViewer=null;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
grid = new GridPane();
grid.setHgap(10);
grid.setVgap(10);
grid.setPadding(new Insets(0, 10, 0, 10));
for(int i=0;i<4;i++){
ipCamViewer = new IPview();
grid.add(ipCamViewer, i%2, i/2);
System.out.println("column: " + i%2 + ", row: " + i/2);
}
Scene scene = new Scene(grid);
stage.setScene(scene);
stage.setTitle("IP Camera Solution");
stage.show();
}
}
-
public class IPview extends HBox {
private ImageView imgWebCamCapturedImage;
private BufferedImage grabbedImage;
private ObjectProperty<Image> imageProperty = new SimpleObjectProperty<Image>();
HBox hbox;
public IPview(){
HBox hbox=addHBox();
}
public HBox addHBox() {
hbox = new HBox();
hbox.setPadding(new Insets(15, 12, 15, 12));
hbox.setSpacing(10);
hbox.setStyle("-fx-background-color: #336699;");
Button buttonCurrent = new Button("Current");
buttonCurrent.setPrefSize(100, 20);
Button buttonProjected = new Button("Projected");
buttonProjected.setPrefSize(100, 20);
hbox.getChildren().addAll(buttonCurrent, buttonProjected);
return hbox;
}
}
最佳答案
如果IPView
是HBox
的子类,则需要将按钮添加到IPView
实例,而不是创建另一个 HBox
作为它的成员变量。
即
public class IPview extends HBox {
private ImageView imgWebCamCapturedImage;
private BufferedImage grabbedImage;
private ObjectProperty<Image> imageProperty = new SimpleObjectProperty<Image>();
public IPview(){
this.setPadding(new Insets(15, 12, 15, 12));
this.setSpacing(10);
this.setStyle("-fx-background-color: #336699;");
Button buttonCurrent = new Button("Current");
buttonCurrent.setPrefSize(100, 20);
Button buttonProjected = new Button("Projected");
buttonProjected.setPrefSize(100, 20);
this.getChildren().addAll(buttonCurrent, buttonProjected);
}
}
如果您希望 HBox
成为成员变量,那么您不会将 IPView
设为 HBox
的子类,而只需提供访问权限到HBox
:
public class IPview {
private ImageView imgWebCamCapturedImage;
private BufferedImage grabbedImage;
private ObjectProperty<Image> imageProperty = new SimpleObjectProperty<Image>();
private HBox hbox;
public IPview(){
hbox = new HBox();
hbox.setPadding(new Insets(15, 12, 15, 12));
hbox.setSpacing(10);
hbox.setStyle("-fx-background-color: #336699;");
Button buttonCurrent = new Button("Current");
buttonCurrent.setPrefSize(100, 20);
Button buttonProjected = new Button("Projected");
buttonProjected.setPrefSize(100, 20);
hbox.getChildren().addAll(buttonCurrent, buttonProjected);
}
public Node getView() {
return hbox ;
}
}
然后在你的应用程序类中你会这样做
ipCamViewer = new IPview();
grid.add(ipCamViewer.getView(), i%2, i/2);
总的来说,我更喜欢第二种方法,但这只是个人喜好问题。
关于java - Javafx 中 GridPane 内的 HBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27537776/
HBox 是一个容器组件,用于在一条水平线上保留和排列控件。然而,我在我的应用程序中的许多 HBox 容器之一中遇到了控件的“困惑”放置,并且该放置绝对不像水平线,而且,包含在 HBox 中的控件与
我正在尝试为我制作的模块( see this SO question )制作一个输入小部件。 输入小部件应该有一个标题栏和下面可变数量的输入行。我想在每个输入行的末尾有一个删除按钮。 理想情况下,删除
我目前正在开发一个 javaFX 项目,该项目必须处理将 3 个 Pane 堆叠在一起的问题。顶部一个包含 5 个单选按钮,中间包含一个文本“编程很有趣”,底部 Pane 包含两个带有“”符号。基本上
我们在我们的应用程序中使用 ExtJS4。但是我们面临 hbox 布局的问题。我们需要从右侧置换项目。通常在 ExtJS4 中,hbox 布局中的项目从左侧开始并向右移动。但是我们需要从右侧开始向左侧
我有一个 hbox 布局容器,可容纳 2 个面板,当面板超过容器的高度时,就没有垂直滚动条。 我希望滚动条出现在父水平盒子面板上,而不是子项目上。 可以吗? 最佳答案 您应该能够使用 hbox 布局将
我试图通过从数据库获取数据来动态添加对象/元素。我想要实现的是,我想复制具有相同 attributes 的相同 HBox ,例如 FontAwesomeIcon 等。但是,我只是想更改标签。 这就是我
我不明白为什么我的 HBox 周围没有边框?现在什么也没有发生,除了 eclipse 抛出 IllegalArgumentException 之外,因为我猜是 this.setCenter(hbox)
我放置了 HBox进入 BorderPane 的中心,那就是唯一直接Node在DialogPane上我的Dialog通过使用此代码: public GameDialog(Player[] pl
我有一个可调整大小的面板,其中包含另一个内部带有水平盒布局的面板。整个显示设置是正确的,期望一种行为;渲染后用鼠标调整主面板大小时;它不是内部自动调整项目。 要成功适合那些项目; 需要再次调整主面板的
是否可以有一个带有关闭按钮的 HBox(即用于删除 HBox 的子按钮)? I我计划将其实现为这样的: 我想创建一个自己的类,它继承自 HBox 类,并且在实例化后就已经有一个关闭按钮。 关闭按钮需要
我尝试简单的测试 package sample; import javafx.application.Application; import javafx.geometry.Insets; impor
所以,我似乎无法让 HBox 出现在我的应用程序中。 Button 出现了,但 HBox 没有出现。有人可以让我知道我做错了什么吗? package cyanlauncher; import java
我的 Javafx 应用程序中有一个 HBox,配置如下 HBox belowBox = new HBox(10); belowBox.getStyleClass().addAll("pane",
我一直在开发一个使用 JavaFX 的软件,但我遇到了一个愚蠢但令人担忧的问题。 在代码的某些部分,我有一个HBox,在它里面有三个项目:一个image,一个label和一个垂直框。 问题是我想让 i
如何在 HBox 中隐藏一个项目,并让该项目使用的空间可供其他项目使用。 TitledPane legendPane = new TitledPane("Legend", _legend); lege
在 Windows 7 中的 gtk+3.0 中。 我正在创建一个按钮并将它们打包成水平框。我已将扩展设置为 FALSE。现在按钮不是在 x 方向扩展而是垂直扩展。我不希望按钮也垂直扩展。 int m
我有一个包含 javafx.scene.layout.HBox 的 JavaFX 场景。此 HBox 包含两个子项,一个 javafx.scene.control.ComboBox 后跟一个 java
考虑以下代码: HBox hbox = new HBox(); Button button1 = new Button("A"); Button button2 = new Button("B");
我无法让 buttonContainer HBox 中的按钮工作,因为我根本无法点击它们,它们被“卡住”了,所以说话。这种情况在多个 IDE 中都会发生,所以不可能是这样。我不明白为什么他们被卡住而无
我正在尝试创建一个程序,当单击按钮时它将显示脸部。例如,微笑按钮将显示笑脸,思考按钮将显示思考脸。问题是,当选择一个形状时,如何删除其他两个形状? 我尝试过以下方法: frownButton.setO
我是一名优秀的程序员,十分优秀!