| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <UserControl x:Class="ivf_tl_Operate.CustomUserControls.CustomQuickButton"
- 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:ivf_tl_Operate.CustomUserControls"
- mc:Ignorable="d"
- >
- <Border x:Name="_kuaiJie_Border" Canvas.Left="75" Visibility="Visible" Width="770" Height="105" Background="White" CornerRadius="20" BorderThickness="2" BorderBrush="#7FA6A6A6">
- <StackPanel Orientation="Horizontal">
- <Border x:Name="_kuaiJie1_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="108" CornerRadius="20 0 0 20">
- <TextBlock x:Name="_kuaiJie1_TextBlock" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- <Rectangle Width="2" Fill="#A6A6A6" Opacity="0.5"/>
- <Border x:Name="_kuaiJie2_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="108">
- <TextBlock x:Name="_kuaiJie2_TextBlock" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- <Rectangle Width="2" Fill="#A6A6A6" Opacity="0.5"/>
- <Border x:Name="_kuaiJie3_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="108">
- <TextBlock x:Name="_kuaiJie3_TextBlock" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- <Rectangle Width="2" Fill="#A6A6A6" Opacity="0.5"/>
- <Border x:Name="_kuaiJie4_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="108">
- <TextBlock x:Name="_kuaiJie4_TextBlock" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- <Rectangle Width="2" Fill="#A6A6A6" Opacity="0.5"/>
- <Border x:Name="_kuaiJie5_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="108" CornerRadius="0 20 20 0">
- <TextBlock x:Name="_kuaiJie5_TextBlock" Text="" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- <Rectangle Width="2" Fill="#A6A6A6" Opacity="0.5"/>
- <Border x:Name="_kuaiJie6_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="108" CornerRadius="0 20 20 0">
- <TextBlock x:Name="_kuaiJie6_TextBlock" Text="" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- <Rectangle Width="2" Fill="#A6A6A6" Opacity="0.5"/>
- <Border x:Name="_kuaiJie7_Border" MouseUp="KuaiJie_MouseUp" Background="Transparent" Width="110" CornerRadius="0 20 20 0">
- <TextBlock x:Name="_kuaiJie7_TextBlock" Text="" TextAlignment="Center" TextWrapping="Wrap" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#6E7276" FontWeight="Regular" FontSize="30"/>
- </Border>
- </StackPanel>
- </Border>
- </UserControl>
|