Table of Contents

Delegate PanelSettings.ItemToControlDelegate

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Encapsulates a method that is used when item is converted to the control.

public delegate object? PanelSettings.ItemToControlDelegate(PanelSettingsItem item, object? createdControl)

Parameters

item PanelSettingsItem

Item for the conversion.

createdControl object

If not Null, contains previously created control. In this case you need only to update control's properties. If passed control is not of the desired type, just create new control.

Returns

object