From 91b45b42dfed8d0aeda9c585f8bf26cc7e261298 Mon Sep 17 00:00:00 2001 From: Carson McCombs Date: Wed, 24 Jul 2024 14:23:17 -0500 Subject: [PATCH] Moved ParameterManager Table --- CarsonsAddins/CarsonsAddins.csproj | 2 +- .../{ViewModels => Models}/ParameterManagerTable.cs | 5 ++--- .../Views/ParameterManagerDockablePane.xaml.cs | 1 - 3 files changed, 3 insertions(+), 5 deletions(-) rename CarsonsAddins/Standalone/ParameterManager/{ViewModels => Models}/ParameterManagerTable.cs (98%) diff --git a/CarsonsAddins/CarsonsAddins.csproj b/CarsonsAddins/CarsonsAddins.csproj index bcadfb9..bf6368a 100644 --- a/CarsonsAddins/CarsonsAddins.csproj +++ b/CarsonsAddins/CarsonsAddins.csproj @@ -198,7 +198,7 @@ - + diff --git a/CarsonsAddins/Standalone/ParameterManager/ViewModels/ParameterManagerTable.cs b/CarsonsAddins/Standalone/ParameterManager/Models/ParameterManagerTable.cs similarity index 98% rename from CarsonsAddins/Standalone/ParameterManager/ViewModels/ParameterManagerTable.cs rename to CarsonsAddins/Standalone/ParameterManager/Models/ParameterManagerTable.cs index f2bd7ae..d9a2b32 100644 --- a/CarsonsAddins/Standalone/ParameterManager/ViewModels/ParameterManagerTable.cs +++ b/CarsonsAddins/Standalone/ParameterManager/Models/ParameterManagerTable.cs @@ -17,13 +17,12 @@ using CarsonsAddins.Utils; using System.Windows.Media; using CarsonsAddins.Shared.EventHandlers; -using CarsonsAddins.Standalone.ParameterManager.Models; -namespace CarsonsAddins.Standalone.ParameterManager.ViewModels +namespace CarsonsAddins.Standalone.ParameterManager.Models { /// - /// Abstracts the parameters and element data and interactions with the WPF DataGrid into its own class. + /// Abstracts the parameters and element data and interactions with the WPF DataGrid into its own class. Note: Created before migrating to MVVM architecture, so it doesn't exactly fit. /// class ParameterTable { diff --git a/CarsonsAddins/Standalone/ParameterManager/Views/ParameterManagerDockablePane.xaml.cs b/CarsonsAddins/Standalone/ParameterManager/Views/ParameterManagerDockablePane.xaml.cs index c692e46..31c6e0a 100644 --- a/CarsonsAddins/Standalone/ParameterManager/Views/ParameterManagerDockablePane.xaml.cs +++ b/CarsonsAddins/Standalone/ParameterManager/Views/ParameterManagerDockablePane.xaml.cs @@ -1,7 +1,6 @@ using Autodesk.Revit.DB; using Autodesk.Revit.UI; using CarsonsAddins.Standalone.ParameterManager.Models; -using CarsonsAddins.Standalone.ParameterManager.ViewModels; using System; using System.Collections.Generic; using System.Collections.ObjectModel;