Annular.xaml 654 B

1234567891011121314151617
  1. <UserControl x:Class="Aitex.Core.UI.Control.Annular"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d" Width="20" Height="18" BorderBrush="#a8a8a8">
  7. <Grid >
  8. <Border CornerRadius="50" Width="8" Height="12" BorderBrush="#a8a8a8" BorderThickness="0.5,1,0.5,0" Margin="1,3,6,4" >
  9. </Border>
  10. </Grid>
  11. </UserControl>