소스 검색

Moved DoChanged to after the Refresh

Kenric Nugteren 8 달 전
부모
커밋
4ddad13822
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
                 }
     }