當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。