|
@@ -23,7 +23,6 @@ namespace Venus_MainPages.Views
|
|
|
|
|
|
SerializableDictionary<string, string> recipeDictionary = new SerializableDictionary<string, string>();
|
|
|
|
|
|
-
|
|
|
public string FullPath { get; private set; }
|
|
|
|
|
|
string value;
|
|
@@ -107,30 +106,43 @@ namespace Venus_MainPages.Views
|
|
|
{
|
|
|
|
|
|
var dictionary = SerializeHelper.Instance.StringToDictionary(value);
|
|
|
- if (dictionary.Count == 0)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- foreach (var item in PreLotTreeView.Items)
|
|
|
+
|
|
|
+ if (dictionary.Keys.Contains("PreLotClean"))
|
|
|
{
|
|
|
- var tvi = (TreeViewItem)PreLotTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
- SetSelect(tvi, dictionary["PreLotClean"]);
|
|
|
+ foreach (var item in PreLotTreeView.Items)
|
|
|
+ {
|
|
|
+ var tvi = (TreeViewItem)PreLotTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
+ SetSelect(tvi, dictionary["PreLotClean"]);
|
|
|
+ }
|
|
|
}
|
|
|
- foreach (var item in ProcessTreeView.Items)
|
|
|
+
|
|
|
+ if (dictionary.Keys.Contains("Process"))
|
|
|
{
|
|
|
- var tvi = (TreeViewItem)ProcessTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
- SetSelect(tvi, dictionary["Process"]);
|
|
|
+ foreach (var item in ProcessTreeView.Items)
|
|
|
+ {
|
|
|
+ var tvi = (TreeViewItem)ProcessTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
+ SetSelect(tvi, dictionary["Process"]);
|
|
|
+ }
|
|
|
}
|
|
|
- foreach (var item in WTWTreeView.Items)
|
|
|
+
|
|
|
+ if (dictionary.Keys.Contains("WTWClean"))
|
|
|
{
|
|
|
- var tvi = (TreeViewItem)WTWTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
- SetSelect(tvi, dictionary["WTWClean"]);
|
|
|
+ foreach (var item in WTWTreeView.Items)
|
|
|
+ {
|
|
|
+ var tvi = (TreeViewItem)WTWTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
+ SetSelect(tvi, dictionary["WTWClean"]);
|
|
|
+ }
|
|
|
}
|
|
|
- foreach (var item in PostLotTreeView.Items)
|
|
|
+
|
|
|
+ if (dictionary.Keys.Contains("PostLotClean"))
|
|
|
{
|
|
|
- var tvi = (TreeViewItem)PostLotTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
- SetSelect(tvi, dictionary["PostLotClean"]);
|
|
|
+ foreach (var item in PostLotTreeView.Items)
|
|
|
+ {
|
|
|
+ var tvi = (TreeViewItem)PostLotTreeView.ItemContainerGenerator.ContainerFromItem(item);
|
|
|
+ SetSelect(tvi, dictionary["PostLotClean"]);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
void SetSelect(TreeViewItem tvi, string value)
|