Im writing UWP app using Xaml I try to put list view where I have list of attandence but I cant see the scroll ba. I have also scrollView on all the page for case that the user minimize the page so if I have a long attandnece in my list I can scroll down all the page to see the items in the buttom of the attendence but I would like to scroll only inside the list view and not all the page. i try many diffrenet things nut nothing works this is my Xaml code:
<Grid Width="600" Visibility="{Binding EventVisible}" ScrollViewer.HorizontalScrollMode="Auto">
<StackPanel>
<ListView VerticalAlignment="Top" x:Name="GuestsList" ItemsSource="{Binding Guests, Mode=TwoWay}" >
<ListView.ItemTemplate>
<DataTemplate>
<Border BorderBrush="{StaticResource SystemControlBackgroundBaseLowBrush}" BorderThickness="0,0,0,2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBox Text="{Binding CustomId, Mode=TwoWay}" Grid.Row="0" Grid.Column="0"/>
<Button Command="{Binding ElementName=GuestsList, Path=DataContext.UpdateGuestCommand}" CommandParameter="{Binding}" Grid.Row="0" Grid.Column="1" >
<SymbolIcon Symbol="Edit"></SymbolIcon>
</Button>
<Button Command="{Binding ElementName=GuestsList, Path=DataContext.RemoveGuestCommand}" CommandParameter="{Binding}" Grid.Row="0" Grid.Column="2">
<SymbolIcon Symbol="Delete"></SymbolIcon>
</Button>
</Grid>
</Border>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackPanel>
</Grid>