From 3f2f11bdf398de0436b28d1f61f52b23fb3f72b7 Mon Sep 17 00:00:00 2001
From: F K <54195004+fredjk-gh@users.noreply.github.com>
Date: Wed, 1 Mar 2023 14:52:20 -0500
Subject: [PATCH] [Framework + Core] Feature: Add support for adding multiple
grid items (#105)
For plugin developers: Adds a new method to the IObservatoryCore interface to add multiple grid items in 1 call -- which only invokes the UI thread once (and potentially only scrolls to bottom once) providing a small performance improvement and providing some modest convenience.
---
.../PluginManagement/PluginCore.cs | 47 ++++++++++++++-----
ObservatoryFramework/Interfaces.cs | 7 +++
2 files changed, 42 insertions(+), 12 deletions(-)
diff --git a/ObservatoryCore/PluginManagement/PluginCore.cs b/ObservatoryCore/PluginManagement/PluginCore.cs
index 10443cc..3fa0637 100644
--- a/ObservatoryCore/PluginManagement/PluginCore.cs
+++ b/ObservatoryCore/PluginManagement/PluginCore.cs
@@ -105,21 +105,28 @@ namespace Observatory.PluginManagement
//Hacky removal of original empty object if one was used to populate columns
if (worker.PluginUI.DataGrid.Count == 2)
{
- bool allNull = true;
- Type itemType = worker.PluginUI.DataGrid[0].GetType();
- foreach (var property in itemType.GetProperties())
- {
- if (property.GetValue(worker.PluginUI.DataGrid[0], null) != null)
- {
- allNull = false;
- break;
- }
- }
-
- if (allNull)
+ if (FirstRowIsAllNull(worker))
worker.PluginUI.DataGrid.RemoveAt(0);
}
+ });
+ }
+ ///
+ /// Adds multiple items to the datagrid on UI thread to ensure visual update.
+ ///
+ ///
+ ///
+ public void AddGridItems(IObservatoryWorker worker, IEnumerable