diff --git a/Source/LibationWinForms/GridView/ProductsGrid.cs b/Source/LibationWinForms/GridView/ProductsGrid.cs index 35996f27..df6a5ec0 100644 --- a/Source/LibationWinForms/GridView/ProductsGrid.cs +++ b/Source/LibationWinForms/GridView/ProductsGrid.cs @@ -38,6 +38,7 @@ namespace LibationWinForms.GridView InitializeComponent(); EnableDoubleBuffering(); gridEntryDataGridView.Scroll += (_, s) => Scroll?.Invoke(this, s); + removeGVColumn.Frozen = false; } private void EnableDoubleBuffering() @@ -115,6 +116,9 @@ namespace LibationWinForms.GridView foreach (var book in bindingList.AllItems()) book.Remove = RemoveStatus.NotRemoved; } + + removeGVColumn.DisplayIndex = 0; + removeGVColumn.Frozen = value; removeGVColumn.Visible = value; } }