B-Arts DocumentationIndice generale

BView - esempi

using B.BWindows.BControls;

BView view = new()
{
  AutoDeleteRow = true,
  ShowQuestionBeforeDelete = true
};

view.AddRow();
view.WriteCell("ABC", 0, 0);
object value = view.ReadCell(0, 0);

view.BeforeDelete += rowIndex =>
{
  RegistraTentativoEliminazione(rowIndex);
};