Drop Down Cell

Represents a cell containing a drop down.

Namespace: LSOne.Controls.Cells

Assembly: LSOne.Controls.ListView

Syntax

public class DropDownCell : ExtendedCell

 

Constructors

Name Description
DropDownCell(string) Initializes a new instance of the DateTimeCell with the given text

Properties

Name Description
Touch Gets or sets if the control supports touch interaction

Examples

 

See Source\SM\Plugins\Administration\ViewPages\AdministrationBlankOperationsPage.cs from DevPack for usage examples.

 


var cell = new DropDownCell(item.Text) {Tag = item.Tag};
row.AddCell(cell);

See also