| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Window x:Class="ivf_tl_Operate.Windows.MessageWindow"
- 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"
- xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_Surface"
- mc:Ignorable="d"
- WindowStyle="None"
- AllowsTransparency="True"
- WindowStartupLocation="CenterOwner"
- Background="Transparent"
- Title="MarkWindow" Height="667" Width="1452">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="134"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!--header-->
- <Border Grid.Row="0" Height="134" CornerRadius="15 15 0 0" Background="#4D75AC">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <TextBlock Grid.Column="0" x:Name="_tile_TextBlock" Text="{DynamicResource C0171}" FontSize="44" Foreground="#FFFFFF" HorizontalAlignment="Center" VerticalAlignment="Center"/>
- </Grid>
- </Border>
- <!--content-->
- <Border Grid.Row="1" CornerRadius="0 0 15 15 " Background="{StaticResource BorderMenuFill}">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="300"/>
- </Grid.RowDefinitions>
- <TextBlock x:Name="_textBlock" Margin="50 0 50 0" Text="" FontSize="44" TextWrapping="Wrap" TextAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- <!--按钮-->
- <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
- <customControl:ButtonCornerRadius Click="Sure_Click" Width="366" Height="120" CornerRadius="60" Background="#FCB439" BorderThickness="0"
- Content="{DynamicResource C0159}" FontSize="46" FontWeight="Bold" Foreground="#0D0604" Margin="20"/>
- <customControl:ButtonCornerRadius Click="Cancel_Click" Width="366" Height="120" CornerRadius="60" Background="#B0B4B9" BorderThickness="0"
- Content="{DynamicResource C0031}" FontSize="46" FontWeight="Bold" Foreground="White" Margin="20"/>
- </StackPanel>
- </Grid>
- </Border>
- </Grid>
- </Window>
|