Click or drag to resize

PropertyCellTypeNumberOnConfigure Method

Configures the content control for the given cell information.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public override void OnConfigure(
	CellEventArgs args,
	Control control
)

Parameters

args
Type: Eto.FormsCellEventArgs
Cell arguments
control
Type: Eto.FormsControl
Content control that was previously created with the OnCreate method.
Remarks
When the DataContext changes on a cell, this will be called to configure the cell. You are only required to override this when you are not using MVVM data binding with your controls created by OnCreate(CellEventArgs).
See Also