AfagFeederDebugPage.xaml 966 B

12345678910111213141516
  1. <UserControl x:Class="TeamAAS.Feeder.UI.AfagFeederDebugPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Background="Transparent">
  5. <Border Background="{DynamicResource SecondaryRegionBrush}" CornerRadius="6"
  6. Padding="24" HorizontalAlignment="Center" VerticalAlignment="Center">
  7. <StackPanel>
  8. <TextBlock Text="🚧" FontSize="40" HorizontalAlignment="Center" Margin="0,0,0,12"/>
  9. <TextBlock Text="Afag 供料器调试页" FontSize="18" FontWeight="Bold"
  10. HorizontalAlignment="Center" Margin="0,0,0,8"/>
  11. <TextBlock Text="该品牌协议待开发,当前页面为占位框架。" FontSize="13"
  12. Foreground="{DynamicResource SecondaryTextBrush}"
  13. HorizontalAlignment="Center"/>
  14. </StackPanel>
  15. </Border>
  16. </UserControl>