| 1234567891011121314151617181920212223 |
- <UserControl x:Class="SHJX.Service.Library.Views.CustomEllipse"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <Viewbox>
- <Grid Width="100"
- Height="100">
- <Ellipse x:Name="cap"
- Width="93"
- Height="93"
- Margin="2,2" />
- <TextBlock x:Name="txt_info"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="25"
- FontFamily="幼圆"
- FontWeight="UltraBlack"
- Foreground="White" />
- </Grid>
- </Viewbox>
- </UserControl>
|