CustomCellConfigureCell Property |
Gets or sets a delegate to configure an cell when it is reused for a different row or the data changes.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Action<CellEventArgs, Control> ConfigureCell { get; set; }
Public Property ConfigureCell As Action(Of CellEventArgs, Control)
Get
Set
member ConfigureCell : Action<CellEventArgs, Control> with get, set
Property Value
Type:
ActionCellEventArgs,
ControlThe delegate to configure an existing cell's control for a new row/model instance.
Remarks
This should set up your control your cell content to be reused. If null, the DataContext of your control will be set to the row model instance.
Typically if you use MVVM data binding, you do not need to override the standard behaviour.
See Also