MotionDebugView.xaml 759 B

1234567891011121314151617181920212223
  1. <UserControl x:Class="TeamAAS.Motion.MotionDebugView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:loc="clr-namespace:TeamAAS.Localization;assembly=TeamAAS.Global">
  5. <Border Background="{DynamicResource RegionBrush}" BorderBrush="{DynamicResource BorderBrush}"
  6. BorderThickness="1" CornerRadius="4" Margin="2">
  7. <ListBox x:Name="AxisGrid">
  8. <ListBox.ItemTemplate>
  9. <DataTemplate>
  10. <TextBlock Text="{Binding Name}"/>
  11. </DataTemplate>
  12. </ListBox.ItemTemplate>
  13. </ListBox>
  14. </Border>
  15. </UserControl>