I got the following xaml code (simplified) :
<StackPanel Grid.Row="2">
<TreeView x:Name="a" VerticalAlignment="Stretch" BorderThickness="0">
[...]
</TreeView>
<TreeView Name="b" VerticalAlignment="Stretch" BorderThickness="0">
[...]
</TreeView>
</StackPanel>
My StackPanel is contained in a Grid in a certain Column and in Row 2. The thing is that when one of my TreeView is being too "long" (vertically), I haven't a ScrollBar that appears...
I tried to add the property
CanVerticallyScroll="True"
to the StackPanel but it doesn't change anything...
Any help ?