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