Newer
Older
Correlator / PipeGallery / View / PopupIsOrNotWindow.xaml
<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"
    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">
            <Button
                x:Name="btnOK"
                Width="100"
                Margin="15,0"
                Content="是"
                Foreground="White"
                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"
                Width="100"
                Margin="15,0"
                Content="否"
                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>