DataGridColumnGenerateEditingElement Method
When overridden in a derived class, gets an editing element that is bound to the column's
Binding property value.
Namespace: Avalonia.ControlsAssembly: Avalonia.Controls.DataGrid (in Avalonia.Controls.DataGrid.dll) Version: 11.3.999
protected abstract Control GenerateEditingElement(
DataGridCell cell,
Object dataItem,
out ICellEditBinding binding
)
Protected MustOverride Function GenerateEditingElement (
cell As DataGridCell,
dataItem As Object,
<OutAttribute> ByRef binding As ICellEditBinding
) As Control
abstract GenerateEditingElement :
cell : DataGridCell *
dataItem : Object *
binding : ICellEditBinding byref -> Control
- cell DataGridCell
-
The cell that will contain the generated element.
- dataItem Object
-
The data item represented by the row that contains the intended cell.
- binding ICellEditBinding
- When the method returns, contains the applied binding.
Control
A new editing element that is bound to the column's
Binding property value.