Click or drag to resize

CustomCell.CreateCell Property

Gets or sets a delegate to create the contents of the cell.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public Func<CellEventArgs, Control> CreateCell { get; set; }

Property Value

Type: Func<CellEventArgs, Control>
The delegate to create the cell content.
Remarks
You can also override the OnCreateCell(CellEventArgs) method in subclasses. Note that you need to handle ConfigureCell to set up the cell for a particular row of data as the control may be reused when scrolling the view.
See Also