Browse Source

1. fix the bug in VenusRecipeSequenceSelectView

zhouhr 4 months ago
parent
commit
b8540e3e4c

+ 13 - 9
Venus/Venus_MainPages/Views/VenusRecipeSequenceSelectView.xaml

@@ -145,21 +145,25 @@
                 <GroupBox Header="Idle Clean" FontSize="14" Grid.Column="4" >
                     <Grid>
                         <Grid.RowDefinitions>
-                            <RowDefinition Height="30"/>
+                            <RowDefinition Height="50"/>
                             <RowDefinition/>
                         </Grid.RowDefinitions>
                         <Border BorderBrush="Black" BorderThickness="1 1 1 0" Background="White" >
-                            <StackPanel Orientation="Horizontal">
-                                <TextBlock Text="Recipe:" VerticalAlignment="Center" FontSize="14" Padding="5 0 0 0"/>
-                                <TextBlock x:Name="idleSelectedRecipeTextBlock" Width="Auto" VerticalAlignment="Center"  FontSize="14"/>
-                                <TextBlock Text="| Time:" Width="Auto" VerticalAlignment="Center"  FontSize="14" Margin="45,0,0,0"/>
-                                <TextBox Width="60" Margin="1,4" x:Name="IdleTime"/>
-                                <TextBlock Text="s" Width="Auto" VerticalAlignment="Center"  FontSize="14"/>
+                            <StackPanel Orientation="Vertical">
+                                <StackPanel Orientation="Horizontal" Margin="0,5,0,0">
+                                    <TextBlock Text="Recipe:" VerticalAlignment="Center" FontSize="14" Padding="5 0 0 0"/>
+                                    <TextBlock x:Name="idleLotSelectedRecipeTextBlock" Width="Auto" VerticalAlignment="Center"  FontSize="14"/>
+                                </StackPanel>
+                                <StackPanel Orientation="Horizontal">
+                                    <TextBlock Text="Time:" Width="Auto" VerticalAlignment="Center"  FontSize="14" Margin="5,0,0,0"/>
+                                    <TextBox Width="60" Margin="6,4" x:Name="IdleTime" InputScope="Number"/>
+                                    <TextBlock Text="s" Width="Auto" VerticalAlignment="Center"  FontSize="14"/>
+                                </StackPanel>
                             </StackPanel>
                         </Border>
 
-                        <Border  Grid.Row="1" BorderBrush="Black" BorderThickness="1" Background="White" MouseDown="WTWBorder_MouseDown">
-                            <TreeView  x:Name="LongIdleCleanTreeView" Margin="5" ItemsSource="{Binding Files[0].Files}" ItemTemplate="{StaticResource FileTemplate}"
+                        <Border  Grid.Row="1" BorderBrush="Black" BorderThickness="1" Background="White" MouseDown="IdleBorder_MouseDown">
+                            <TreeView x:Name="LongIdleCleanTreeView" Margin="5" ItemsSource="{Binding Files[0].Files}" ItemTemplate="{StaticResource FileTemplate}"
    VirtualizingPanel.IsVirtualizing="True" VirtualizingPanel.VirtualizationMode="Recycling" SelectedItemChanged="IdleClean_PART_TREE_SelectedItemChanged"
    Height="{Binding Path=ActualHeight,ElementName=PART_BORDER, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}">
                                 <!--Height should add for VirtualizingPanel, otherwise the App will be slow-->

+ 51 - 0
Venus/Venus_MainPages/Views/VenusRecipeSequenceSelectView.xaml.cs

@@ -27,6 +27,7 @@ namespace Venus_MainPages.Views
         private FileNode process_currentFileNode;
         private FileNode wtw_currentFileNode;
         private FileNode post_currentFileNode;
+        private FileNode clean_currentFileNode;
 
         SerializableDictionary<string, string> recipeDictionary = new SerializableDictionary<string, string>();
 
@@ -81,6 +82,19 @@ namespace Venus_MainPages.Views
                 recipeDictionary.Add("PostLotClean", "");
             }
 
+            if (clean_currentFileNode != null && clean_currentFileNode.Parent.Name == "Clean")
+            {
+                recipeDictionary.Add("IdleClean", clean_currentFileNode.Name);
+                recipeDictionary.Add("IdleTime", IdleTime.Text);
+            }
+            else
+            {
+                recipeDictionary.Add("IdleClean", "");
+                recipeDictionary.Add("IdleTime", "");
+            }
+
+           
+
             this.FullPath = SerializeHelper.Instance.DictionaryToString(recipeDictionary);
         }
         private void PreClean_PART_TREE_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
@@ -135,6 +149,19 @@ namespace Venus_MainPages.Views
             }
         }
 
+        private void IdleClean_PART_TREE_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
+        {
+            clean_currentFileNode = (FileNode)(sender as TreeView).SelectedItem;
+            if (clean_currentFileNode.Parent.Name == "Clean")
+            {
+                idleLotSelectedRecipeTextBlock.Text = clean_currentFileNode.Name;
+            }
+            else
+            {
+                idleLotSelectedRecipeTextBlock.Text = "";
+            }
+        }
+
         private void Window_Loaded(object sender, RoutedEventArgs e)
         {
 
@@ -182,6 +209,21 @@ namespace Venus_MainPages.Views
                 }
             }
 
+            if (dictionary.Keys.Contains("IdleClean"))
+            {
+                idleLotSelectedRecipeTextBlock.Text = dictionary["IdleClean"];
+                foreach (var item in LongIdleCleanTreeView.Items)
+                {
+                    var tvi = (TreeViewItem)LongIdleCleanTreeView.ItemContainerGenerator.ContainerFromItem(item);
+                    SetSelect(tvi, dictionary["IdleClean"]);
+                }
+            }
+
+            if (dictionary.Keys.Contains("IdleTime"))
+            {
+                IdleTime.Text = dictionary["IdleTime"];
+            }
+
         }
 
         void SetSelect(TreeViewItem tvi, string value)
@@ -239,5 +281,14 @@ namespace Venus_MainPages.Views
                 SetSelect(tvi, "");
             }
         }
+
+        private void IdleBorder_MouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
+        {
+            foreach (var item in LongIdleCleanTreeView.Items)
+            {
+                var tvi = (TreeViewItem)LongIdleCleanTreeView.ItemContainerGenerator.ContainerFromItem(item);
+                SetSelect(tvi, "");
+            }
+        }
     }
 }