<Window x:Class="PipeGallery.View.PopupIsOrNotWindow" 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:PipeGallery.View" mc:Ignorable="d" Title="提示" Height="768" Width="1366" Background="#b4000000" WindowStyle="None" ResizeMode="CanMinimize" ShowInTaskbar="False" WindowState="Maximized" AllowsTransparency="True" WindowStartupLocation="Manual" > <Grid Width="520" Height="235"> <Grid.Background> <ImageBrush ImageSource="/PipeGallery;component/Image/popup_bakground.png" /> </Grid.Background> <TextBlock x:Name="tbTitle" HorizontalAlignment="Left" VerticalAlignment="Top" Foreground="#545454" FontSize="14" Text="" TextWrapping="Wrap" MaxWidth="400" Margin="10"/> <TextBlock x:Name="tbContent" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="#545454" FontSize="18" Margin="0,0,0,60" Text="" TextWrapping="Wrap" MaxWidth="400"/> <StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,150,0,0"> <Button x:Name="btnOK" Content="是" Foreground="White" Width="100" Margin="15,0" Style="{StaticResource BtnCommonStyle}" > <Button.Background> <ImageBrush ImageSource="/PipeGallery;component/Image/tubiao_44.png" /> </Button.Background> <Button.Tag> <ImageBrush ImageSource="/PipeGallery;component/Image/tubiao_13.png" /> </Button.Tag> </Button> <Button x:Name="btnClose" Content="否" Width="100" Margin="15,0" Style="{StaticResource BtnCommonStyle}" > <Button.Background> <ImageBrush ImageSource="/PipeGallery;component/Image/tubiao_48.png" /> </Button.Background> <Button.Tag> <ImageBrush ImageSource="/PipeGallery;component/Image/tubiao_21.png" /> </Button.Tag> </Button> </StackPanel> </Grid> </Window>