Added comment.

This commit is contained in:
Michael Bucari-Tovo 2021-08-09 19:15:41 -06:00
parent 5f8ca9a0b5
commit ab82e7c99c

View File

@ -208,6 +208,8 @@ namespace LibationWinForms
for (var r = _dataGridView.RowCount - 1; r >= 0; r--)
_dataGridView.Rows[r].Visible = productIds.Contains(getGridEntry(r).AudibleProductId);
}
//Causes repainting of the DataGridView
currencyManager.ResumeBinding();
VisibleCountChanged?.Invoke(this, _dataGridView.AsEnumerable().Count(r => r.Visible));
}