PhotoButton.xaml 1.0 KB

123456789101112131415161718
  1. <UserControl x:Class="ivf_tl_Operate.CustomUserControls.PhotoButton"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ivf_tl_Operate.CustomUserControls"
  7. mc:Ignorable="d"
  8. >
  9. <Border x:Name="_border" Grid.Column="0" CornerRadius="40" Width="140" Height="80">
  10. <Border.Background>
  11. <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
  12. <GradientStop Color="#6F7377" Offset="0.1" />
  13. <GradientStop Color="#AEB2B7" Offset="0.9" />
  14. </LinearGradientBrush>
  15. </Border.Background>
  16. <TextBlock x:Name="_text" Text="0-18h" FontSize="33" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  17. </Border>
  18. </UserControl>