<Window x:Class="PipeGallery.View.PopupBlankWindow" 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" Title="提示" Width="1366" Height="768" AllowsTransparency="True" Background="#b4000000" ResizeMode="CanMinimize" ShowInTaskbar="False" WindowStartupLocation="Manual" WindowState="Maximized" WindowStyle="None" mc:Ignorable="d"> <Grid Width="520" Height="235"> <Grid.Background> <ImageBrush ImageSource="/PipeGallery;component/Image/popup_bakground.png" /> </Grid.Background> <TextBlock x:Name="tbTitle" MaxWidth="400" Margin="10" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="14" Foreground="#545454" Text="" TextWrapping="Wrap" /> <TextBlock x:Name="tbContent" MaxWidth="400" Margin="0,0,0,60" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="18" Foreground="#545454" Text="" TextWrapping="Wrap" /> <StackPanel Margin="0,150,0,0" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" /> </Grid> </Window>