本文整理汇总了Java中javafx.scene.layout.AnchorPane.setStyle方法的典型用法代码示例。如果您正苦于以下问题:Java AnchorPane.setStyle方法的具体用法?Java AnchorPane.setStyle怎么用?Java AnchorPane.setStyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.layout.AnchorPane
的用法示例。
在下文中一共展示了AnchorPane.setStyle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initComponents
import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
protected void initComponents(String title, Region content) {
// Border style
this.setStyle("-fx-border-width: 1; -fx-border-color: silver");
// TitleBar with Add / Remove Buttons
AnchorPane titleBar = new AnchorPane();
// TitleBar border style
titleBar.setStyle("-fx-border-width: 0 0 1 0; -fx-border-color: silver;");
// Button group
HBox buttons = new HBox();
buttons.setPadding(new Insets(10));
buttons.setSpacing(10);
Button buttonAdd = Utils.createPlusButton();
buttonAdd.setOnAction(this::setOnAddAction);
Button buttonRemove = Utils.createMinusButton();
buttonRemove.setOnAction(this::setOnRemoveAction);
/*Font fontButton = Font.font("sans-serif", FontWeight.EXTRA_BOLD, 12);
buttonAdd.setFont(fontButton);
buttonRemove.setFont(fontButton);*/
buttons.getChildren().addAll(buttonAdd, buttonRemove);
// Title
Label titleText = new Label(title);
titleBar.getChildren().addAll(titleText, buttons);
AnchorPane.setLeftAnchor(titleText, 10.0);
AnchorPane.setTopAnchor(titleText, 10.0);
AnchorPane.setRightAnchor(buttons, 0.0);
// Content
this.setTop(titleBar);
this.setCenter(content);
}