| 12345678910111213141516171819202122232425 |
- <Window x:Class="ivf_tl_Manage.Win.ToastWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:ivf_tl_Manage.Win"
- mc:Ignorable="d"
- FontFamily="{StaticResource sourceHan}"
- WindowStyle="None"
- ShowInTaskbar="False"
- WindowStartupLocation="Manual"
- SizeToContent="WidthAndHeight"
- Background="Transparent"
- AllowsTransparency="True">
- <Grid Height="64" x:Name="rootGrid">
- <Grid.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/SuccessToastIcon1.png"/>
- </Grid.Background>
- <!--<Image x:Name="image" Width="170" Height="64" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/SuccessToastIcon1.png"/>-->
- <StackPanel Margin="20" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
- <Image x:Name="image1" Width="20" Height="20" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/SuccessToastIcon2.png"/>
- <TextBlock VerticalAlignment="Center" x:Name="textString" Margin="10 0 0 0" Text="{DynamicResource 0506}" FontWeight="Medium" Foreground="White" FontSize="20"/>
- </StackPanel>
- </Grid>
- </Window>
|