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


Java Label.setGraphicTextGap方法代码示例

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


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

示例1: createPopoverContent

import javafx.scene.control.Label; //导入方法依赖的package包/类
/**
 * Creates a <{@link Label} containing text and icon
 * 
 * @param hovered
 *            - Use darker icon if mouse is hovered
 * @return <{@link Label}
 */
private Label createPopoverContent(String msg, ImageView icon, Color textColor, int fontSize) {
	Label label = new Label(msg);
	label.setGraphic(icon);
	label.setTextFill(textColor);
	label.setFont(Font.font("SansSerif", fontSize));
	label.setAlignment(javafx.geometry.Pos.CENTER);
	label.setGraphicTextGap(15);
	label.setContentDisplay(ContentDisplay.TOP);

	return label;
}
 
开发者ID:michaelnetter,项目名称:dracoon-dropzone,代码行数:19,代码来源:DropzonePopOverUI.java

示例2: Dialog

import javafx.scene.control.Label; //导入方法依赖的package包/类
public Dialog(String msg) {
	setResizable(false);
       initStyle(StageStyle.TRANSPARENT);
       initOwner(Main.getPrimaryStage());
       initModality(Modality.WINDOW_MODAL);

       label = new Label(msg);
       label.setWrapText(true);
       label.setGraphicTextGap(20);
       label.getStyleClass().add("label");
       
       borderPane = new BorderPane();
       
       dropShadowPane = new BorderPane();
       dropShadowPane.getStyleClass().add("content");
       dropShadowPane.setTop(label);

       hbox = new HBox();
       hbox.setSpacing(15);
       
       // calculate width of string
       text = new Text(msg);
       text.snapshot(null, null);
       
       int width = 300;
       int height = 100;

       this.setWidth(width);
       this.setHeight(height);

       // make sure this stage is centered on top of its owner
       this.setX(Main.getPrimaryStage().getX() + (Main.getPrimaryStage().getWidth() / 2 - this.getWidth() / 2));
       this.setY(Main.getPrimaryStage().getY() + (Main.getPrimaryStage().getHeight() / 2 - this.getHeight() / 2));
}
 
开发者ID:Team-Sprout,项目名称:Clipcon-Client,代码行数:35,代码来源:Dialog.java


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