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


Java Cell.setGraphic方法代码示例

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


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

示例1: updateItem

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void updateItem(final Cell<T> cell,
        final StringConverter<T> converter,
        final HBox hbox,
        final Node graphic,
        final ChoiceBox<T> choiceBox
) {
    if (cell.isEmpty()) {
        cell.setText(null);
        cell.setGraphic(null);
    } else if (cell.isEditing()) {
        if (choiceBox != null) {
            choiceBox.getSelectionModel().select(cell.getItem());
        }
        cell.setText(null);

        if (graphic != null) {
            hbox.getChildren().setAll(graphic, choiceBox);
            cell.setGraphic(hbox);
        } else {
            cell.setGraphic(choiceBox);
        }
    } else {
        cell.setText(getItemText(cell, converter));
        cell.setGraphic(graphic);
    }
}
 
开发者ID:Naoghuman,项目名称:ABC-List,代码行数:27,代码来源:CellUtils.java

示例2: startEdit

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void startEdit(final Cell<T> cell,
        final StringConverter<T> converter,
        final HBox hbox,
        final Node graphic,
        final TextField textField
) {
    if (textField != null) {
        textField.setText(getItemText(cell, converter));
    }
    cell.setText(null);

    if (graphic != null) {
        hbox.getChildren().setAll(graphic, textField);
        cell.setGraphic(hbox);
    } else {
        cell.setGraphic(textField);
    }

    textField.selectAll();

    // requesting focus so that key input can immediately go into the
    // TextField (see RT-28132)
    textField.requestFocus();
}
 
开发者ID:Naoghuman,项目名称:ABC-List,代码行数:25,代码来源:CellUtils.java

示例3: updateItem

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void updateItem(final Cell<T> cell, final StringConverter<T> converter, final HBox hbox, final Node graphic,
		final TextField textField) {
	if (cell.isEmpty()) {
		cell.setText(null);
		cell.setGraphic(null);
	} else {
		if (cell.isEditing()) {
			if (textField != null) {
				textField.setText(getItemText(cell, converter));
			}
			cell.setText(null);

			if (graphic != null) {
				hbox.getChildren().setAll(graphic, textField);
				cell.setGraphic(hbox);
			} else {
				cell.setGraphic(textField);
			}
		} else {
			cell.setText(getItemText(cell, converter));
			cell.setGraphic(graphic);
		}
	}
}
 
开发者ID:callakrsos,项目名称:Gargoyle,代码行数:25,代码来源:PasswordTextFieldTableCell.java

示例4: startEdit

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void startEdit(final Cell<T> cell, final StringConverter<T> converter, final HBox hbox, final Node graphic,
		final TextField textField) {
	if (textField != null) {
		textField.setText(getItemText(cell, converter));
	}
	cell.setText(null);

	if (graphic != null) {
		hbox.getChildren().setAll(graphic, textField);
		cell.setGraphic(hbox);
	} else {
		cell.setGraphic(textField);
	}

	textField.selectAll();

	// requesting focus so that key input can immediately go into the
	// TextField (see RT-28132)
	textField.requestFocus();
}
 
开发者ID:callakrsos,项目名称:Gargoyle,代码行数:21,代码来源:PasswordTextFieldTableCell.java

示例5: updateItem

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void updateItem(final Cell<T> cell,
        final StringConverter<T> converter,
        final HBox hbox,
        final Node graphic,
        final TextField textField)
{
    if (cell.isEmpty())
    {
        cell.setText(null);
        cell.setGraphic(null);
    } else
    {
        if (cell.isEditing())
        {
            if (textField != null)
            {
                textField.setText(getItemText(cell, converter));
            }
            cell.setText(null);

            if (graphic != null)
            {
                hbox.getChildren().setAll(graphic, textField);
                cell.setGraphic(hbox);
            } else
            {
                cell.setGraphic(textField);
            }
        } else
        {
            cell.setText(getItemText(cell, converter));
            cell.setGraphic(graphic);
        }
    }
}
 
开发者ID:gg-net,项目名称:dwoss,代码行数:36,代码来源:CustomTableCell.java

示例6: startEdit

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void startEdit(final Cell<T> cell,
        final StringConverter<T> converter,
        final HBox hbox,
        final Node graphic,
        final TextField textField)
{
    if (textField != null)
    {
        textField.setText(getItemText(cell, converter));
    }
    cell.setText(null);

    if (graphic != null)
    {
        hbox.getChildren().setAll(graphic, textField);
        cell.setGraphic(hbox);
    } else
    {
        cell.setGraphic(textField);
    }

    textField.selectAll();

    // requesting focus so that key input can immediately go into the
    // TextField (see RT-28132)
    textField.requestFocus();
}
 
开发者ID:gg-net,项目名称:dwoss,代码行数:28,代码来源:CustomTableCell.java

示例7: cancelEdit

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void cancelEdit(Cell<T> cell, final StringConverter<T> converter, Node graphic) {
    cell.setText(getItemText(cell, converter));
    cell.setGraphic(graphic);
}
 
开发者ID:Naoghuman,项目名称:ABC-List,代码行数:5,代码来源:CellUtils.java

示例8: cancelEdit

import javafx.scene.control.Cell; //导入方法依赖的package包/类
static <T> void cancelEdit(Cell<T> cell, final StringConverter<T> converter, Node graphic) {
	cell.setText(getItemText(cell, converter));
	cell.setGraphic(graphic);
}
 
开发者ID:callakrsos,项目名称:Gargoyle,代码行数:5,代码来源:PasswordTextFieldTableCell.java


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