Icon Tooltip Cell
Represents an Extended Cell with a tooltip.
Namespace: LSOne.Controls.Cells
Assembly: LSOne.Controls.ListView
Syntax
public class IconToolTipCell : ExtendedCell
Constructors
| Name | Description |
|---|---|
| IconToolTipCell(string, System.Drawing.Image, string) | Initializes a new instance of the IconToolTipCell class with the given text, image and tooltip text |
| IconToolTipCell(System.Drawing.Image, string) | Initializes a new instance of the IconToolTipCell class with the given text image and tooltip text |
Examples
See Source\SM\Plugins\PeriodicDiscounts\Views\PeriodicDiscountPrioritiesView.cs from DevPack for usage examples.
var cell = (new IconToolTipCell(item.Text.ToString(), Properties.Resources.dot_green_16, "tooltip text"));
row.AddCell(cell);
