CustomEllipse.xaml 968 B

1234567891011121314151617181920212223
  1. <UserControl x:Class="SHJX.Service.Library.Views.CustomEllipse"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d">
  7. <Viewbox>
  8. <Grid Width="100"
  9. Height="100">
  10. <Ellipse x:Name="cap"
  11. Width="93"
  12. Height="93"
  13. Margin="2,2" />
  14. <TextBlock x:Name="txt_info"
  15. HorizontalAlignment="Center"
  16. VerticalAlignment="Center"
  17. FontSize="25"
  18. FontFamily="幼圆"
  19. FontWeight="UltraBlack"
  20. Foreground="White" />
  21. </Grid>
  22. </Viewbox>
  23. </UserControl>