scrolly posts

This commit is contained in:
Mike Griese
2024-12-11 17:10:07 -06:00
parent 0f6adb0b1b
commit 03b22a545b
2 changed files with 10 additions and 10 deletions

View File

@@ -25,7 +25,6 @@
x:Name="ContentGrid"
Padding="12, 8, 8, 8"
CornerRadius="{StaticResource OverlayCornerRadius}"
TabFocusNavigation="Cycle"
Margin="0,4,4,4"
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}">

View File

@@ -23,15 +23,16 @@
<controls:SwitchPresenter TargetType="local:ViewModelLoadedState" Value="{x:Bind LoadedState, Mode=OneWay}">
<controls:Case Value="Loaded">
<ItemsControl Margin="8" ItemsSource="{x:Bind ViewModel.Forms, Mode=OneWay}">
<!-- or ListView or ItemsRepeater more likely... -->
<ItemsControl.ItemTemplate>
<DataTemplate x:DataType="viewmodels:FormViewModel">
<cmdPalControls:FormControl ViewModel="{x:Bind}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<ScrollView VerticalAlignment="Top" VerticalScrollMode="Enabled">
<ItemsControl VerticalAlignment="Stretch" Margin="8" ItemsSource="{x:Bind ViewModel.Forms, Mode=OneWay}">
<!-- or ListView or ItemsRepeater more likely... -->
<ItemsControl.ItemTemplate>
<DataTemplate x:DataType="viewmodels:FormViewModel">
<cmdPalControls:FormControl ViewModel="{x:Bind}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollView>
</controls:Case>