mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-10 16:48:22 -04:00
Expose grid entries
This commit is contained in:
@@ -37,6 +37,7 @@ namespace LibationWinForms
|
||||
public partial class ProductsGrid : UserControl
|
||||
{
|
||||
|
||||
internal event EventHandler<GridEntry> LiberateClicked;
|
||||
ImageDisplay imageDisplay;
|
||||
public event EventHandler<int> VisibleCountChanged;
|
||||
|
||||
@@ -123,7 +124,7 @@ namespace LibationWinForms
|
||||
displayWindow.Show(this);
|
||||
}
|
||||
|
||||
private static async Task Liberate_Click(GridEntry liveGridEntry)
|
||||
private async Task Liberate_Click(GridEntry liveGridEntry)
|
||||
{
|
||||
var libraryBook = liveGridEntry.LibraryBook;
|
||||
|
||||
@@ -270,6 +271,9 @@ namespace LibationWinForms
|
||||
.Select(row => ((GridEntry)row.DataBoundItem).LibraryBook)
|
||||
.ToList();
|
||||
|
||||
internal IEnumerable<GridEntry> AllEntries
|
||||
=> bindingList;
|
||||
|
||||
private GridEntry getGridEntry(int rowIndex) => _dataGridView.GetBoundItem<GridEntry>(rowIndex);
|
||||
|
||||
#region Column Customizations
|
||||
|
||||
Reference in New Issue
Block a user