Button Set Cell
Represents a cell containing a list of buttons.
Namespace: LSOne.Controls.Cells
Assembly: LSOne.Controls.ListView
Syntax
public class ButtonSetCell : Cell
Constructors
Name | Description |
---|---|
ButtonSetCell(bool) |
Methods
Name | Description |
---|---|
AddButton(string, int, button) | Adds a new button to the cell |
Examples
var btnCell = new ButtonSetCell(true);
btnCell.AddButton("Add", 10, item);
btnCell.AddButton("Edit", 10, item);
row.AddCell(btnCell);
row.Tag = item;