本文整理了Java中javafx.scene.control.Label.getWidth()
方法的一些代码示例,展示了Label.getWidth()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Label.getWidth()
方法的具体详情如下:
包路径:javafx.scene.control.Label
类名称:Label
方法名:getWidth
暂无
代码示例来源:origin: jfoenixadmin/JFoenix
sizingRoot.layout();
sizeLabel.setMinWidth(25);
sizeLabel.setPrefWidth(sizeCalculator.getWidth());
sizeLabel.setAlignment(Pos.BASELINE_RIGHT);
代码示例来源:origin: torakiki/pdfsam
private void showPasswordFieldPopup() {
Scene scene = this.getScene();
if (scene != null) {
Window owner = scene.getWindow();
if (owner != null && owner.isShowing()) {
Point2D nodeCoord = encryptionIndicator.localToScene(encryptionIndicator.getWidth() / 2,
encryptionIndicator.getHeight() / 1.5);
double anchorX = Math.round(owner.getX() + scene.getX() + nodeCoord.getX() + 2);
double anchorY = Math.round(owner.getY() + scene.getY() + nodeCoord.getY() + 2);
passwordPopup.showFor(this, descriptor, anchorX, anchorY);
}
}
}
代码示例来源:origin: stackoverflow.com
Label label = new Label("2", skin, "default");
Label subscript = new Label("n", skin, "smaller");
subscript.setPosition(label.getX() + label.getWidth() + xLittleOffset, label.getY() + yOffset);
代码示例来源:origin: nl.cloudfarming.client/calendar-api
boolean isInsideStateIcon(Point2D point) {
BoundingBox bounds = new BoundingBox(expandedStateLabel.getLayoutX(), expandedStateLabel.getLayoutY(), expandedStateLabel.getWidth(), expandedStateLabel.getHeight());
return bounds.contains(point);
}
代码示例来源:origin: nl.cloudfarming.client/calendar-api
label.setLayoutY(3);
label.setText(title);
if (visibleWidth > label.getWidth() + TITLE_LABEL_INDENT) {
if (barXPosition < 0) {
x = -barXPosition;
if (visibleWidth > (expandedStateLabel.getWidth())) {
if (barXPosition < 0) {
x = -barXPosition;
内容来源于网络,如有侵权,请联系作者删除!