| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <Window x:Class="Venus_MainPages.Views.RecipeSequenceSelectView"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"         mc:Ignorable="d"        WindowStartupLocation="CenterOwner"        WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"        Background="LightSkyBlue" Width="350" Height="500" Name="recipeSequenceSelect">    <Window.Resources>        <HierarchicalDataTemplate x:Key="FileTemplate" ItemsSource="{Binding Files}">            <StackPanel>                <TextBlock Text="{Binding Name}" />            </StackPanel>        </HierarchicalDataTemplate>    </Window.Resources>    <Border BorderBrush="Gray" BorderThickness="0,1,0,0" >        <Grid Margin="20,30">            <Grid.RowDefinitions>                <RowDefinition />                <RowDefinition Height="auto"/>            </Grid.RowDefinitions>            <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1" Background="White">                <TreeView x:Name="PART_TREE" Margin="5" ItemsSource="{Binding Files[0].Files}" ItemTemplate="{StaticResource FileTemplate}"                       VirtualizingPanel.IsVirtualizing="True" VirtualizingPanel.VirtualizationMode="Recycling" SelectedItemChanged="PART_TREE_SelectedItemChanged"                       Height="{Binding Path=ActualHeight,ElementName=PART_BORDER, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" MouseDoubleClick="PART_TREE_MouseDoubleClick">                    <!--Height should add for VirtualizingPanel, otherwise the App will be slow-->                    <TreeView.ItemContainerStyle>                        <Style TargetType="{x:Type TreeViewItem}" BasedOn="{StaticResource ResourceKey={x:Type TreeViewItem}}">                            <Setter Property="IsExpanded" Value="True"></Setter>                        </Style>                    </TreeView.ItemContainerStyle>                </TreeView>            </Border>            <StackPanel Grid.Row="1" Margin="0,10,0,0" Orientation="Horizontal" HorizontalAlignment="Center">                <Button Content="OK" Width="90" Height="30" Click="buttonOK_Click" x:Name="buttonOK"/>                <Button Content="Cancel" Margin="10,0,0,0" Width="90" Height="30" Click="buttonCancel_Click" x:Name="buttonCancel"/>            </StackPanel>        </Grid>    </Border></Window>
 |