Uses of Class
javafx.scene.control.ListView
-
Packages that use ListView 软件包 描述 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 ListView in javafx.scene.control
Methods in javafx.scene.control that return ListView Modifier and Type 方法 描述 ListView<T>
ListCell. getListView()
获取属性listView的值。ListView<T>
ListView.EditEvent. getSource()
返回发生编辑的ListView。Methods in javafx.scene.control that return types with arguments of type ListView Modifier and Type 方法 描述 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()
返回当前的单元格工厂。ReadOnlyObjectProperty<ListView<T>>
ListCell. listViewProperty()
与此单元格关联的ListView。Methods in javafx.scene.control with parameters of type ListView Modifier and Type 方法 描述 void
ListCell. updateListView(ListView<T> listView)
更新与此单元格关联的ListView。Method parameters in javafx.scene.control with type arguments of type ListView Modifier and Type 方法 描述 void
ComboBox. setCellFactory(Callback<ListView<T>,ListCell<T>> value)
设置属性cellFactory的值。void
ListView. setCellFactory(Callback<ListView<T>,ListCell<T>> value)
设置要在ListView中使用的新单元格工厂。Constructors in javafx.scene.control with parameters of type ListView Constructor 描述 EditEvent(ListView<T> source, EventType<? extends ListView.EditEvent<T>> eventType, T newValue, int editIndex)
创建一个新的EditEvent实例来表示编辑事件。 -
Uses of ListView in javafx.scene.control.cell
Methods in javafx.scene.control.cell that return types with arguments of type ListView 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
,允许在单元格双击时或当调用edit(int)
时编辑单元格内容。static <T> Callback<ListView<T>,ListCell<T>>
TextFieldListCell. forListView(StringConverter<T> converter)
-
Uses of ListView in javafx.scene.control.skin
Constructors in javafx.scene.control.skin with parameters of type ListView Constructor 描述 ListViewSkin(ListView<T> control)
创建一个新的ListViewSkin实例,将必要的子节点安装到控件children
列表中,以及处理键,鼠标等事件的必要输入映射。
-