UserControl1.xaml 1.72 KB
<UserControl x:Class="OS.Spin.View.SquareBox.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:OS.Spin.View.SquareBox"
             mc:Ignorable="d" >
    <StackPanel Orientation="Vertical" Width="196" Height="97" x:Name="stack">
        <StackPanel.Background>
            <ImageBrush ImageSource="../images/形状1拷贝5.png" Stretch="Fill"/>
        </StackPanel.Background>
        <StackPanel Orientation="Horizontal" Width="196" Height="32.333333">
            <TextBlock Foreground="White" FontSize="19" Width="70" Block.TextAlignment="Center" Padding="0,4,0,0"/>
            <TextBlock Foreground="White" FontSize="19" x:Name="textBlockOne" Block.TextAlignment="Center" Padding="0,4,0,0"/>
        </StackPanel>

        <StackPanel Orientation="Horizontal" Width="196" Height="32.333333">
            <TextBlock Foreground="White" FontSize="19" Width="70"  Block.TextAlignment="Center" Padding="0,4,0,0"/>
            <TextBlock Foreground="White" FontSize="19" x:Name="textBlockTwo" Block.TextAlignment="Center" Padding="0,4,0,0"/>
        </StackPanel>

        <StackPanel Orientation="Horizontal" Width="196" Height="32.333333">
            <TextBlock Foreground="White" FontSize="19" Width="70"  Block.TextAlignment="Center" Padding="0,4,0,0"/>
            <TextBlock Foreground="White" FontSize="19" x:Name="textBlockThree" Block.TextAlignment="Center" Padding="0,4,0,0"/>
        </StackPanel>
    </StackPanel>
</UserControl>