@@ -18,7 +18,7 @@ public FormBase(FormMain myParent)
1818 MyParent = myParent ;
1919 InitializeComponent ( ) ;
2020 }
21- internal static LoadPatternGridView _loadPatternGridView ;
21+ internal static TemplateGridView _templateGridView ;
2222
2323 // List of TEAM working environments.
2424 public static TeamEnvironmentCollection TeamEnvironmentCollection { get ; set ; } = new TeamEnvironmentCollection ( ) ;
@@ -36,7 +36,7 @@ internal static class GlobalParameters
3636 public static string CorePath { get ; } = Application . StartupPath + @"\" + @"Core\" ;
3737 public static string VdwConfigurationPath { get ; } = RootPath + @"\Configuration\" ;
3838 public static string VdwConfigurationFileName { get ; } = "VDW_Configuration.txt" ;
39- public static string LoadPatternListFileName { get ; } = "loadPatternCollection .json" ;
39+ public static string TemplateCollectionFileName { get ; } = "templateCollection .json" ;
4040
4141 // TEAM core file names, not meant to be updated
4242 public static string TeamConfigurationFileName { get ; } = "TEAM_configuration" ;
@@ -59,15 +59,14 @@ internal static class VdwConfigurationSettings
5959 internal static EventLog VdwEventLog { get ; set ; } = new EventLog ( ) ;
6060
6161 public static string VdwSchema { get ; set ; } = "dbo" ;
62- public static string LoadPatternPath { get ; set ; } = GlobalParameters . RootPath + @"\LoadPatterns \" ;
62+ public static string TemplatePath { get ; set ; } = GlobalParameters . RootPath + @"\Templates \" ;
6363 public static string VdwMetadatPath { get ; set ; } = Application . StartupPath + @"\Metadata\" ;
6464 public static string VdwOutputPath { get ; set ; } = Application . StartupPath + @"\Output\" ;
6565 public static string VdwExamplesPath { get ; set ; } = Application . StartupPath + @"\Examples\" ;
6666
67- public static List < LoadPatternFileHandling > patternList { get ; set ; }
67+ public static List < TemplateHandling > templateList { get ; set ; }
6868
69- // Related to TEAM configuration settings
70- //public static string TeamEnvironmentFilePath { get; set; } = GlobalParameters.RootPath + @"\Configuration\";
69+ // Related to TEAM configuration settings.
7170 public static string TeamConfigurationPath { get ; set ; } = Application . StartupPath + @"\Configuration\" ;
7271 public static string TeamConnectionsPath { get ; set ; } = Application . StartupPath + @"\Configuration\" ;
7372 public static string TeamEnvironmentFilePath { get ; set ; } = GlobalParameters . RootPath + @"\Configuration\" + GlobalParameters . JsonEnvironmentFileName + GlobalParameters . JsonExtension ;
@@ -79,7 +78,7 @@ internal static class VdwConfigurationSettings
7978 // In memory settings for reloading.
8079 public static string SelectedSubTab { get ; set ; }
8180 public static string SelectedMainTab { get ; set ; }
82- public static string SelectedPatternText { get ; set ; }
81+ public static string SelectedTemplateText { get ; set ; }
8382 }
8483 }
8584}
0 commit comments