当前位置: 首页>>代码示例>>Java>>正文


Java AnchorPane.setTopAnchor方法代码示例

本文整理汇总了Java中javafx.scene.layout.AnchorPane.setTopAnchor方法的典型用法代码示例。如果您正苦于以下问题:Java AnchorPane.setTopAnchor方法的具体用法?Java AnchorPane.setTopAnchor怎么用?Java AnchorPane.setTopAnchor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javafx.scene.layout.AnchorPane的用法示例。


在下文中一共展示了AnchorPane.setTopAnchor方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: AnchorPaneSample

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
public AnchorPaneSample() {

    AnchorPane anchorPane = new AnchorPane();

    Label label1 = new Label("We are all in an AnchorPane.");        
    ImageView imageView = new ImageView(ICON_48);
    Button button1 = new Button("Submit");

    anchorPane.getChildren().addAll(label1, imageView, button1);

    AnchorPane.setTopAnchor(label1, Double.valueOf(2));
    AnchorPane.setLeftAnchor(label1, Double.valueOf(20));
    AnchorPane.setTopAnchor(button1, Double.valueOf(40));
    AnchorPane.setLeftAnchor(button1, Double.valueOf(20));
    AnchorPane.setTopAnchor(imageView, Double.valueOf(75));
    AnchorPane.setLeftAnchor(imageView, Double.valueOf(20));

    getChildren().add(anchorPane);
}
 
开发者ID:jalian-systems,项目名称:marathonv5,代码行数:20,代码来源:AnchorPaneSample.java

示例2: start

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
@Override public void start(Stage stage) {
    AnchorPane pane = new AnchorPane(xAxis, yAxis, grid);

    AnchorPane.setTopAnchor(yAxis, 0d);
    AnchorPane.setBottomAnchor(yAxis, 25d);
    AnchorPane.setLeftAnchor(yAxis, 0d);

    AnchorPane.setLeftAnchor(xAxis, 25d);
    AnchorPane.setRightAnchor(xAxis, 0d);
    AnchorPane.setBottomAnchor(xAxis, 0d);

    AnchorPane.setTopAnchor(grid, 0d);
    AnchorPane.setRightAnchor(grid, 0d);
    AnchorPane.setBottomAnchor(grid, 25d);
    AnchorPane.setLeftAnchor(grid, 25d);

    Scene scene = new Scene(pane);

    stage.setTitle("GridTest");
    stage.setScene(scene);
    stage.show();

    //Helper.saveAsPng(pane, "/Users/hansolo/Desktop/grid.png");
}
 
开发者ID:HanSolo,项目名称:charts,代码行数:25,代码来源:GridTest.java

示例3: createFooter

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
private AnchorPane createFooter() {
  AnchorPane footer = new AnchorPane();
  footer.getStyleClass().add("footer");
  HBox bottonBox = new HBox(20);
  bottonBox.getChildren().addAll(previous, next);
  footer.getChildren().add(bottonBox);
  AnchorPane.setRightAnchor(bottonBox, 20.0);
  AnchorPane.setTopAnchor(bottonBox, 10.0);
  AnchorPane.setBottomAnchor(bottonBox, 10.0);
  return footer;
}
 
开发者ID:VerifAPS,项目名称:stvs,代码行数:12,代码来源:WizardView.java

示例4: VerticalResizeContainerView

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
/**
 * Creates an instance of this container class.
 */
public VerticalResizeContainerView() {
  this.getChildren().add(container);
  container.getChildren().addAll(contentContainer);
  contentContainer.getChildren().addAll(content, dragLine);
  AnchorPane.setLeftAnchor(container, 0.0);
  AnchorPane.setRightAnchor(container, 0.0);
  AnchorPane.setTopAnchor(container, 0.0);
  dragLine.widthProperty().bind(container.widthProperty());
  // AnchorPane.setBottomAnchor(dragLine, 0.0);
  ViewUtils.setupView(this, "resizeContainer.css");

  this.getStyleClass().add("resizeContainer");
  dragLine.getStyleClass().add("dragLine");
}
 
开发者ID:VerifAPS,项目名称:stvs,代码行数:18,代码来源:VerticalResizeContainerView.java

示例5: createRightYAxis

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
private Axis createRightYAxis(final double MIN, final double MAX, final boolean AUTO_SCALE) {
    Axis axis = new Axis(Orientation.VERTICAL, Position.RIGHT);
    axis.setMinValue(MIN);
    axis.setMaxValue(MAX);
    axis.setPrefWidth(AXIS_WIDTH);
    axis.setAutoScale(AUTO_SCALE);

    AnchorPane.setRightAnchor(axis, 0d);
    AnchorPane.setTopAnchor(axis, 0d);
    AnchorPane.setBottomAnchor(axis, 25d);

    return axis;
}
 
开发者ID:HanSolo,项目名称:charts,代码行数:14,代码来源:LogGridTest.java

示例6: createLeftYAxis

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
private Axis createLeftYAxis(final double MIN, final double MAX, final boolean AUTO_SCALE) {
    Axis axis = new Axis(Orientation.VERTICAL, Position.LEFT);
    axis.setMinValue(MIN);
    axis.setMaxValue(MAX);
    axis.setPrefWidth(AXIS_WIDTH);
    axis.setAutoScale(AUTO_SCALE);

    AnchorPane.setTopAnchor(axis, 0d);
    AnchorPane.setBottomAnchor(axis, 25d);
    AnchorPane.setLeftAnchor(axis, 0d);

    return axis;
}
 
开发者ID:HanSolo,项目名称:charts,代码行数:14,代码来源:ChartTest.java

示例7: setChildNode

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
@Override
public void setChildNode(Node node) {
    containerContent.clear();
    AnchorPane.setTopAnchor(node, 0.0);
    AnchorPane.setLeftAnchor(node, 0.0);
    AnchorPane.setRightAnchor(node, 0.0);
    AnchorPane.setBottomAnchor(node, 0.0);
    containerContent.setAll(node);
}
 
开发者ID:stechy1,项目名称:drd,代码行数:10,代码来源:RootController.java

示例8: BasePane

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
public BasePane() {
  final String fxmlFile = this.getClass().getSimpleName() + ".fxml";
  FXMLLoader loader = createFXMLLoader(fxmlFile);
  controller = loader.getController();

  AnchorPane.setBottomAnchor(this , 0.0);
  AnchorPane.setTopAnchor(this , 0.0);
  AnchorPane.setLeftAnchor(this , 0.0);
  AnchorPane.setRightAnchor(this , 0.0);
}
 
开发者ID:Java-Publications,项目名称:javamagazin-009-microkernel,代码行数:11,代码来源:BasePane.java

示例9: displayView

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
default void displayView(final AnchorPane anchorPane, final Node view)
{
    // Remove anything already there.
    anchorPane.getChildren().removeAll(anchorPane.getChildren());

    // Make the view fill the anchor pane.
    AnchorPane.setTopAnchor(view, 0.0);
    AnchorPane.setLeftAnchor(view, 0.0);
    AnchorPane.setRightAnchor(view, 0.0);
    AnchorPane.setBottomAnchor(view, 0.0);

    // Add the view into the anchor pane.
    anchorPane.getChildren().add(view);
}
 
开发者ID:apache,项目名称:cayenne-modeler,代码行数:15,代码来源:LayoutSupport.java

示例10: addTab

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
private void addTab(TreeMap treeMap) {
    AnchorPane treeMapContainer = new AnchorPane();
    treeMapContainer.setPrefSize(0, 0);
    Tab tab = new Tab(treeMap.getData().getName(), treeMapContainer);
    Node treeMapNode = treeMap.getNode();
    treeMapContainer.getChildren().add(treeMapNode);
    AnchorPane.setBottomAnchor(treeMapNode, 0.0);
    AnchorPane.setLeftAnchor(treeMapNode, 0.0);
    AnchorPane.setRightAnchor(treeMapNode, 0.0);
    AnchorPane.setTopAnchor(treeMapNode, 0.0);
    tabPane.getTabs().add(tab);
}
 
开发者ID:PtitNoony,项目名称:FxTreeMap,代码行数:13,代码来源:SampleViewController.java

示例11: adjustGridAnchors

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
private void adjustGridAnchors() {
    if (null == grid) return;
    AnchorPane.setLeftAnchor(grid, hasLeftYAxis ? leftAxisWidth : 0d);
    AnchorPane.setRightAnchor(grid, hasRightYAxis ? rightAxisWidth : 0d);
    AnchorPane.setTopAnchor(grid, hasTopXAxis ? topAxisHeight : 0d);
    AnchorPane.setBottomAnchor(grid, hasBottomXAxis ? bottomAxisHeight : 0d);
}
 
开发者ID:HanSolo,项目名称:charts,代码行数:8,代码来源:XYChart.java

示例12: loadView

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
@Override
public void loadView() {
    try {
        parent = loader.load();
        this.getChildren().add(parent);
        this.setStyle("-fx-background-color: #FFFFFF");
        AnchorPane.setTopAnchor(this, 0d);
        AnchorPane.setBottomAnchor(this, 0d);
        this.setPrefSize(((AnchorPane)parent).getPrefWidth(), ((AnchorPane)parent).getPrefHeight());
    } catch (IOException ex) {
        Logger.getLogger(RegisterView.class.getName()).log(Level.SEVERE, null, ex);
    }
}
 
开发者ID:Obsidiam,项目名称:amelia,代码行数:14,代码来源:RegisterView.java

示例13: createTopXAxis

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
private Axis createTopXAxis(final double MIN, final double MAX, final boolean AUTO_SCALE) {
    Axis axis = new Axis(Orientation.HORIZONTAL, Position.TOP);
    axis.setMinValue(MIN);
    axis.setMaxValue(MAX);
    axis.setPrefHeight(AXIS_WIDTH);
    axis.setAutoScale(AUTO_SCALE);

    AnchorPane.setTopAnchor(axis, 25d);
    AnchorPane.setLeftAnchor(axis, 25d);
    AnchorPane.setRightAnchor(axis, 25d);

    return axis;
}
 
开发者ID:HanSolo,项目名称:charts,代码行数:14,代码来源:GridTest.java

示例14: 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);

    }
 
开发者ID:dbisUnibas,项目名称:ReqMan,代码行数:39,代码来源:ModifiableListView.java

示例15: TimeIndicator

import javafx.scene.layout.AnchorPane; //导入方法依赖的package包/类
public TimeIndicator(DayPane dayPane, Node indicator) {
    AnchorPane.setLeftAnchor(dayPane, 0.0);
    AnchorPane.setTopAnchor(dayPane, 0.0);
    AnchorPane.setRightAnchor(dayPane, 0.0);
    AnchorPane.setBottomAnchor(dayPane, 0.0);
    this.getChildren().add(dayPane);

    this.startTime = dayPane.dayStartTimeProperty();
    this.endTime = dayPane.dayEndTimeProperty();
    this.date = dayPane.getDayDate();

    this.indicator = indicator;
    AnchorPane.setLeftAnchor(indicator, 0.0);
    AnchorPane.setRightAnchor(indicator, 0.0);

    // update position if the DayPane's time window changes
    startTime.addListener(observable -> setIndicatorPosition(indicator));
    endTime.addListener(observable -> setIndicatorPosition(indicator));

    // updates the position every minute
    Timeline indicatorupdate = new Timeline(new KeyFrame(javafx.util.Duration.minutes(1), actionEvent -> setIndicatorPosition(indicator)));
    indicatorupdate.setCycleCount(Animation.INDEFINITE);
    indicatorupdate.play();

    // initial position
    setIndicatorPosition(indicator);
}
 
开发者ID:Jibbow,项目名称:FastisFX,代码行数:28,代码来源:TimeIndicator.java


注:本文中的javafx.scene.layout.AnchorPane.setTopAnchor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。