CheckValue2.xaml 743 B

12345678910111213141516
  1. <UserControl x:Class="Aitex.Core.UI.Control.CheckValue2"
  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. xmlns:local="clr-namespace:MECF.Framework.UI.Core.Control"
  7. mc:Ignorable="d"
  8. Height="10" Width="20" BorderThickness="0">
  9. <Grid>
  10. <Canvas>
  11. <Path Stroke="White" StrokeThickness="1" Data="M 0,8 L 10,0.5 20,8 M 6,5 A 4,4 0 1 1 6,6 Z" RenderTransformOrigin="0.484,0.474" />
  12. </Canvas>
  13. </Grid>
  14. </UserControl>