MessagePrompt.xaml 1.4 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="ivf_tl_Operate.Windows.MessagePrompt"
  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_Operate.Windows"
  7. mc:Ignorable="d"
  8. SizeToContent="WidthAndHeight"
  9. Title="MessagePrompt"
  10. WindowStyle="None"
  11. AllowsTransparency="True"
  12. WindowStartupLocation="Manual"
  13. Background="Transparent"
  14. ShowInTaskbar="False">
  15. <Border x:Name="_conent_Border" Background="Black" BorderThickness="0" CornerRadius="12" >
  16. <Grid Margin="35 10 35 10" HorizontalAlignment="Center" VerticalAlignment="Center">
  17. <Grid.ColumnDefinitions>
  18. <ColumnDefinition Width="auto"/>
  19. <ColumnDefinition/>
  20. </Grid.ColumnDefinitions>
  21. <Image x:Name="_icon_Image" Visibility="Collapsed" Source="/Resources/Image/SuccessTips.png" Grid.Column="0" Width="40" Height="40" Margin=" 0 0 10 0"/>
  22. <TextBlock Grid.Column="1" Name="text" Text="{DynamicResource C0170}" TextAlignment="Center" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center" TextWrapping="Wrap" MaxWidth="430" FontSize="30"/>
  23. </Grid>
  24. </Border>
  25. </Window>