本文整理汇总了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))));
}
示例2: addIcon
import javafx.scene.control.Labeled; //导入方法依赖的package包/类
public void addIcon(Labeled component, FontAwesome.Glyph icon) {
component.setGraphic(getFontAwesome().create(icon));
}
示例3: addDangerIcon
import javafx.scene.control.Labeled; //导入方法依赖的package包/类
public void addDangerIcon(Labeled component, FontAwesome.Glyph icon) {
component.setGraphic(getFontAwesome().create(icon).color(dangerColor));
}
示例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);
}