Uses of Class
javafx.scene.control.ListCell
-
Packages that use ListCell 软件包 描述 javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.cell 所述javafx.scene.control.cell
包是所有细胞相关的类的位置,比所述核心类如其他Cell
,IndexedCell
,ListCell
,TreeCell
,和TableCell
。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置 -
-
Uses of ListCell in javafx.scene.control
Methods in javafx.scene.control that return ListCell Modifier and Type 方法 描述 ListCell<T>
ComboBox. getButtonCell()
获取属性buttonCell的值。Methods in javafx.scene.control that return types with arguments of type ListCell Modifier and Type 方法 描述 ObjectProperty<ListCell<T>>
ComboBox. buttonCellProperty()
按钮单元格用于渲染ComboBox“按钮”区域中显示的内容。ObjectProperty<Callback<ListView<T>,ListCell<T>>>
ComboBox. cellFactoryProperty()
提供自定义单元格工厂可以完全自定义ComboBox中项目的呈现。ObjectProperty<Callback<ListView<T>,ListCell<T>>>
ListView. cellFactoryProperty()
设置自定义单元格工厂具有推迟所有单元格创建的效果,允许对单元格进行全面定制。Callback<ListView<T>,ListCell<T>>
ComboBox. getCellFactory()
获取属性cellFactory的值。Callback<ListView<T>,ListCell<T>>
ListView. getCellFactory()
返回当前的单元格工厂。Methods in javafx.scene.control with parameters of type ListCell Modifier and Type 方法 描述 void
ComboBox. setButtonCell(ListCell<T> value)
设置属性buttonCell的值。Method parameters in javafx.scene.control with type arguments of type ListCell Modifier and Type 方法 描述 void
ComboBox. setCellFactory(Callback<ListView<T>,ListCell<T>> value)
设置属性cellFactory的值。void
ListView. setCellFactory(Callback<ListView<T>,ListCell<T>> value)
设置要在ListView中使用的新单元格工厂。 -
Uses of ListCell in javafx.scene.control.cell
Subclasses of ListCell in javafx.scene.control.cell Modifier and Type Class 描述 class
CheckBoxListCell<T>
class
ChoiceBoxListCell<T>
class
ComboBoxListCell<T>
class
TextFieldListCell<T>
Methods in javafx.scene.control.cell that return types with arguments of type ListCell Modifier and Type 方法 描述 static <T> Callback<ListView<T>,ListCell<T>>
CheckBoxListCell. forListView(Callback<T,ObservableValue<Boolean>> getSelectedProperty)
创建用于ListView控件的单元格工厂。static <T> Callback<ListView<T>,ListCell<T>>
CheckBoxListCell. forListView(Callback<T,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
创建用于ListView控件的单元格工厂。static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(ObservableList<T> items)
创建一个ChoiceBox单元格工厂用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)
创建一个ChoiceBox单元格工厂用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(StringConverter<T> converter, T... items)
创建一个ChoiceBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ChoiceBoxListCell. forListView(T... items)
创建一个ChoiceBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(ObservableList<T> items)
创建ComboBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(StringConverter<T> converter, ObservableList<T> items)
创建ComboBox单元格工厂用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(StringConverter<T> converter, T... items)
创建ComboBox单元格工厂,用于ListView
控件。static <T> Callback<ListView<T>,ListCell<T>>
ComboBoxListCell. forListView(T... items)
创建一个ComboBox单元格工厂用于ListView
控件。static Callback<ListView<String>,ListCell<String>>
TextFieldListCell. forListView()
提供TextField
,允许在双击单元格时调用单元格内容,或调用ListView.edit(int)
时。static <T> Callback<ListView<T>,ListCell<T>>
TextFieldListCell. forListView(StringConverter<T> converter)
提供TextField
,允许双击单元格时或当调用ListView.edit(int)
时对单元格内容进行编辑。 -
Uses of ListCell in javafx.scene.control.skin
Constructors in javafx.scene.control.skin with parameters of type ListCell Constructor 描述 ListCellSkin(ListCell<T> control)
创建一个新的ListCellSkin实例,将必需的子节点安装到控件children
列表中,以及处理密钥,鼠标等事件的必要输入映射。
-