Blame view

OS.Spin/OS.Spin.View/SquareBox/UserControl1.xaml 1.72 KB
8ca6e89d   Tuo Wenbo   20211021
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <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>