Large Checkbox Cell

Represents a cell that displays a large checkbox, optimized for touch screens.

Namespace: LSOne.Controls.Cells

Assembly: LSOne.Controls.ListView

Syntax

public class LargeCheckBoxCell : CheckBoxCell

Large checkbox cell

Constructors

Name Description
LargeCheckBoxCell(bool) Initializes a new instance of the LargeCheckBoxCell class with the given checked state
LargeCheckBoxCell(bool, bool) Initializes a new instance of the LargeCheckBoxCell class with the given checked and enabled states.
LargeCheckBoxCell(bool, bool, LSOne.Controls.Cells.CheckBoxCell.CheckBoxAlignmentEnum)

Initializes a new instance of the LargeCheckBoxCell class with the given checked, enabled states and alignment.

Alignment values are:

  • Left
  • Center
LargeCheckBoxCell(string, bool) Initializes a new instance of the LargeCheckBoxCell class with the given text and checked value
LargeCheckBoxCell.LargeCheckBoxCell(string, bool, bool) Initializes a new instance of the LargeCheckBoxCell class with the given text and checked and enabled states
LargeCheckBoxCell.LargeCheckBoxCell(string, System.Drawing.Image, bool) Initializes a new instance of the LargeCheckBoxCell class with the given text, image and checked state
LargeCheckBoxCell.LargeCheckBoxCell(string, System.Drawing.Image, bool, bool) Initializes a new instance of the LargeCheckBoxCell class with the given text, image, checked and enabled states

Examples

 

See Source\Core\Common_services\CustomerOrderService\Panels\SearchPanel.cs from DevPack for usage examples.

 

LargeCheckBoxCell selectionCell = new LargeCheckBoxCell(order.Selected, MultiSelectionActive, CheckBoxCell.CheckBoxAlignmentEnum.Center);
row.AddCell(selectionCell);

See also