Explorar o código

Moved DoChanged to after the Refresh

Kenric Nugteren hai 7 meses
pai
achega
4ddad13822
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      inabox.wpf/DynamicGrid/Grids/DynamicGrid.cs

+ 1 - 1
inabox.wpf/DynamicGrid/Grids/DynamicGrid.cs

@@ -1507,8 +1507,8 @@ public abstract class DynamicGrid<T> : DynamicGrid, IDynamicGridUIComponentParen
                 {
                     DeleteItems(rows);
                     SelectedRows = Array.Empty<CoreRow>();
-                    DoChanged();
                     Refresh(false, true);
+                    DoChanged();
                     SelectItems(null);
                 }
     }