From 6d6434b4d424dbbb6a5ed7fc601df92152e4768b Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Wed, 11 May 2022 21:11:25 -0600 Subject: [PATCH] Revert "Changes for dockable process" This reverts commit a447e88b868a3bd1c2add223a6b137d1f06e4a91. --- Source/LibationWinForms/grid/ProductsGrid.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/LibationWinForms/grid/ProductsGrid.cs b/Source/LibationWinForms/grid/ProductsGrid.cs index 1f32af6c..21a1165f 100644 --- a/Source/LibationWinForms/grid/ProductsGrid.cs +++ b/Source/LibationWinForms/grid/ProductsGrid.cs @@ -36,7 +36,6 @@ namespace LibationWinForms public partial class ProductsGrid : UserControl { - internal event EventHandler LiberateClicked; /// Number of visible rows has changed public event EventHandler VisibleCountChanged; @@ -124,7 +123,7 @@ namespace LibationWinForms displayWindow.Show(this); } - private async Task Liberate_Click(GridEntry liveGridEntry) + private static async Task Liberate_Click(GridEntry liveGridEntry) { var libraryBook = liveGridEntry.LibraryBook; @@ -271,9 +270,6 @@ namespace LibationWinForms .Select(row => ((GridEntry)row.DataBoundItem).LibraryBook) .ToList(); - internal IEnumerable AllEntries - => bindingList; - private GridEntry getGridEntry(int rowIndex) => _dataGridView.GetBoundItem(rowIndex); #region Column Customizations