ChartButton.xaml 909 B

12345678910111213
  1. <UserControl x:Class="ivf_tl_Operate.CustomUserControls.ChartButton"
  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. Width="170" Height="164">
  9. <Grid x:Name="_container" Background="Transparent">
  10. <Image x:Name="_img" Source="/ivf_tl_Operate;component/Resources/Image/chart_house.png" Stretch="Fill" Visibility="Hidden"/>
  11. <TextBlock x:Name="_content" Text="1" Foreground="#6E7276" FontSize="50" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="0 34 0 0"/>
  12. </Grid>
  13. </UserControl>