ToastMessageWindow.xaml 1.1 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="ivf_tl_Manage.Win.ToastMessageWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:ivf_tl_Manage.Win"
  7. mc:Ignorable="d"
  8. FontFamily="{StaticResource sourceHan}"
  9. WindowStyle="None"
  10. ShowInTaskbar="False"
  11. WindowStartupLocation="Manual"
  12. AllowsTransparency="True"
  13. Height="64"
  14. SizeToContent="Width"
  15. Background="Transparent"
  16. >
  17. <Border CornerRadius="12" Background="#7A7A7A" Margin="10">
  18. <TextBlock x:Name="_message" Margin="20 0 20 0" FontWeight="Medium" Foreground="White" FontSize="20" Text="" HorizontalAlignment="Center" VerticalAlignment="Center">
  19. </TextBlock>
  20. <Border.Effect>
  21. <DropShadowEffect BlurRadius="10" ShadowDepth="0" Opacity="0.40" Color="Black"/>
  22. </Border.Effect>
  23. </Border>
  24. </Window>