| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <UserControl
- x:Class="SHJX.Service.Librarys.MainLibrarys.CenterControl"
- 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">
- <Grid.RowDefinitions>
- <RowDefinition Height="1*" />
- <RowDefinition Height="4*" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Border
- x:Name="CBorder"
- Grid.Row="0"
- Grid.RowSpan="2"
- Grid.Column="0"
- Background="#99CCCC"
- CornerRadius="1" />
- <Border BorderBrush="AliceBlue" BorderThickness="0,0,0,2">
- <Grid
- Grid.Row="0"
- Grid.Column="0"
- Background="Transparent">
- <TextBlock
- x:Name="TagName"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontWeight="UltraBold"
- Foreground="AliceBlue" />
- </Grid>
- </Border>
- <Grid
- Grid.Row="1"
- Grid.Column="0"
- Background="Transparent">
- <TextBlock
- x:Name="LocalName"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="30"
- FontWeight="Bold"
- Foreground="AliceBlue" />
- </Grid>
- </Grid>
- </Viewbox>
- </UserControl>
|