本文整理汇总了Java中javafx.scene.control.Button.setMaxSize方法的典型用法代码示例。如果您正苦于以下问题:Java Button.setMaxSize方法的具体用法?Java Button.setMaxSize怎么用?Java Button.setMaxSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.control.Button
的用法示例。
在下文中一共展示了Button.setMaxSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setupFileBox
import javafx.scene.control.Button; //导入方法依赖的package包/类
private static VBox setupFileBox() {
VBox fileBox = new VBox();
HBox chooseFileBox = new HBox(10);
Label fileLocation = new Label("File location:");
Button chooseFileButton = new Button("Choose File");
fileLocationTextField.setPrefSize(210, 20);
fileLocationTextField.setMinHeight(25);
fileLocationTextField.setMaxWidth(210);
fileLocationTextField.setEditable(false);
chooseFileButton.setPrefWidth(80);
chooseFileButton.setMaxSize(100, 50);
chooseFileButton.setOnAction(e -> chooseFile());
chooseFileBox.getChildren().addAll(fileLocationTextField, chooseFileButton);
chooseFileBox.setAlignment(Pos.TOP_CENTER);
fileBox.getChildren().addAll(fileLocation, chooseFileBox);
fileBox.setAlignment(Pos.CENTER);
return fileBox;
}
示例2: DateCellSkin
import javafx.scene.control.Button; //导入方法依赖的package包/类
public DateCellSkin(final DateCell control) {
this.dateCell = control;
button = new Button();
button.textProperty().bind(control.textProperty());
button.setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE);
button.setAlignment(Pos.CENTER);
button.setMinWidth(30);
button.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent actionEvent) {
control.getCalendarView().setSelectedDate(control.getItem());
}
});
button.tooltipProperty().bind(control.tooltipProperty());
getChildren().add(button);
}