qde
Mitglied
Hallo,
ich sitze grade an meinem ersten WPF-Projekt und komme nicht mehr weiter. Ich habe eine ListView, die einfach keine Scrollbar bekommt. Mein XAML-Code sieht so aus:
Für Hilfe wäre ich sehr dankbar!
ich sitze grade an meinem ersten WPF-Projekt und komme nicht mehr weiter. Ich habe eine ListView, die einfach keine Scrollbar bekommt. Mein XAML-Code sieht so aus:
Code:
<StackPanel Margin="8">
<StackPanel>
<Label HorizontalAlignment="Center">
<TextBlock Name="AppTitle" FontSize="18" FontFamily="Verdana" Foreground="Blue" Width="120">Versandbox</TextBlock>
</Label>
<Label HorizontalAlignment="Right" Margin="0,0,10,0">Aktualisierung in ... Minuten</Label>
<Button Width ="100" HorizontalAlignment="Right" Margin="0,0,10,10" >
Aktualisieren
</Button>
<ListView Grid.Row="1" Name="VersandListbox"
ItemsSource="{Binding Source={StaticResource versandListBox}}" SelectionMode="Single" MinWidth="1024" MinHeight="900" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.CanContentScroll="True" IsSynchronizedWithCurrentItem="True">
<ListView.View>
<GridView>
<GridViewColumn />
....
</Gridview>
</ListView.View>
</StackPanel>
</StackPanel>
Für Hilfe wäre ich sehr dankbar!