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


Java Labeled.setGraphic方法代码示例

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


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

示例1: setGraphicForLabeledControl

import javafx.scene.control.Labeled; //导入方法依赖的package包/类
public static void setGraphicForLabeledControl(Labeled control, String imageLocation, ContentDisplay direction)
{
	if (direction != null)
		control.setContentDisplay(direction);
	
	control.setGraphic(new ImageView(new Image(GUIController.class.getResourceAsStream(imageLocation))));
}
 
开发者ID:ck3ck3,项目名称:WhoWhatWhere,代码行数:8,代码来源:GUIController.java

示例2: addIcon

import javafx.scene.control.Labeled; //导入方法依赖的package包/类
public void addIcon(Labeled component, FontAwesome.Glyph icon) {
    component.setGraphic(getFontAwesome().create(icon));
}
 
开发者ID:factoryfx,项目名称:factoryfx,代码行数:4,代码来源:UniformDesign.java

示例3: addDangerIcon

import javafx.scene.control.Labeled; //导入方法依赖的package包/类
public void addDangerIcon(Labeled component, FontAwesome.Glyph icon) {
    component.setGraphic(getFontAwesome().create(icon).color(dangerColor));
}
 
开发者ID:factoryfx,项目名称:factoryfx,代码行数:4,代码来源:UniformDesign.java

示例4: setGraphicIfNotAlready

import javafx.scene.control.Labeled; //导入方法依赖的package包/类
/**
 * Sets the graphic to {@link Labeled}, but only if the same graphic is not already set.
 *
 * @param whereToSet
 *            The Labeled where to set the graphic.
 * @param graphic
 *            The new graphic to set.
 */
public static void setGraphicIfNotAlready(Labeled whereToSet, Node newGraphic) {
	if (whereToSet.getGraphic() == null || !whereToSet.getGraphic().equals(newGraphic))
		whereToSet.setGraphic(newGraphic);
}
 
开发者ID:ubershy,项目名称:StreamSis,代码行数:13,代码来源:CellUtils.java


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