NotificationsPage.xaml 688 B

12345678910
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.NotificationsPage">
  4. <StackPanel Orientation="Vertical" Spacing="4" HorizontalAlignment="Left">
  5. <TextBlock Classes="h1">Notifications</TextBlock>
  6. <Button Content="Show Standard Managed Notification" Command="{Binding ShowManagedNotificationCommand}" />
  7. <Button Content="Show Custom Managed Notification" Command="{Binding ShowCustomManagedNotificationCommand}" />
  8. <Button Content="Show Native Notification" Command="{Binding ShowNativeNotificationCommand}" />
  9. </StackPanel>
  10. </UserControl>