|
@@ -1096,7 +1096,14 @@ public abstract class DynamicGrid<T> : DynamicGrid, IDynamicGridUIComponentParen
|
|
|
MasterData.AddPage(table);
|
|
|
Dispatcher.Invoke(() =>
|
|
|
{
|
|
|
- ProcessData(new(idx, table.Rows.Count));
|
|
|
+ try
|
|
|
+ {
|
|
|
+ ProcessData(new(idx, table.Rows.Count));
|
|
|
+ }
|
|
|
+ catch(Exception e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
}
|
|
@@ -1109,9 +1116,6 @@ public abstract class DynamicGrid<T> : DynamicGrid, IDynamicGridUIComponentParen
|
|
|
DoAfterRefresh();
|
|
|
bRefreshing = false;
|
|
|
IsReady = true;
|
|
|
-
|
|
|
- Loading.BeginAnimation(Label.OpacityProperty, null);
|
|
|
- Loading.Visibility = Visibility.Collapsed;
|
|
|
}
|
|
|
}
|
|
|
|