I have this
<ListBox
ItemsSource="{Binding Students}"
SelectionMode="Extended"
Name="listStudents"
Height="430"
IsEnabled="{Binding CanUpdateNumber}">
</ListBox>
When IsEnabled is true and items in the listbox are more then vertical scrollbar is present. When IsEnabled is false all the items are disabeld (which is true) and the scrollbar is off so cant see all the items in the listbox.
How do i make scrollbar present when the IsEnabled is false