summaryrefslogtreecommitdiff
path: root/print/v4PrintDriverSamples/PrinterExtensionSample/ExtensionSample/ValidationModalDialog.xaml
blob: c949efd4574187290603ba430bbf72655ac2d921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<UserControl x:Class="Microsoft.Samples.Printing.PrinterExtension.ValidationModalDialog"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
    <Grid DataContext="{Binding ElementName=root}">
        <Border Background="#60000000">
            <Border BorderBrush="Black" BorderThickness="1" Background="AliceBlue" 
                CornerRadius="10,0,10,0" VerticalAlignment="Center" HorizontalAlignment="Center">
                <Border.BitmapEffect>
                    <DropShadowBitmapEffect Color="Black" Opacity="0.5" Direction="90" ShadowDepth="0.7" />
                </Border.BitmapEffect>
                <UniformGrid Grid.Row="1" Margin="10" Rows="2" Columns="1" HorizontalAlignment="Center" VerticalAlignment="Bottom">
                    <TextBlock>Validating.. please wait</TextBlock>
                    <Button x:Name="CancelValidationButton" Content="Cancel" Click="CancelValidationButton_Click"/>
                </UniformGrid>
            </Border>
        </Border>
    </Grid>
</UserControl>