Explorar el Código

Moved DoChanged to after the Refresh

Kenric Nugteren hace 11 meses
padre
commit
4ddad13822
Se han modificado 1 ficheros con 1 adiciones y 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);
                 }
     }