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