Update completed solution for chapter 8

This commit is contained in:
Alvin Ashcraft
2023-07-29 14:58:47 -04:00
parent 21e22a0369
commit 4c9e111e61
10 changed files with 387 additions and 7 deletions
@@ -14,6 +14,7 @@
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel>
@@ -69,6 +70,12 @@
Margin="4,0">
<StackPanel HorizontalAlignment="Right"
Orientation="Horizontal">
<Button Command="{x:Bind ViewModel.SendToastCommand}"
Content="Send Notification"
Margin="8,8,0,8"/>
<Button Command="{x:Bind ViewModel.SendToastWithTextCommand}"
Content="Send Notification with Text"
Margin="8,8,0,8"/>
<Button Command="{x:Bind ViewModel.AddEditCommand}"
Content="Add/Edit Item"
Margin="8,8,0,8"/>
@@ -77,5 +84,6 @@
Margin="8"/>
</StackPanel>
</Border>
<InfoBar x:Name="notifyInfoBar" Grid.Row="3"/>
</Grid>
</Page>