/ src / modules / cmdpal / Microsoft.CmdPal.UI / Controls / ScreenPreview.xaml
ScreenPreview.xaml
 1  <?xml version="1.0" encoding="utf-8" ?>
 2  <UserControl
 3      x:Class="Microsoft.CmdPal.UI.Controls.ScreenPreview"
 4      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 5      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 6      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 7      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 8      mc:Ignorable="d">
 9  
10      <Border
11          x:Name="ScreenBorder"
12          HorizontalAlignment="Center"
13          VerticalAlignment="Center"
14          BorderBrush="Black"
15          BorderThickness="8"
16          CornerRadius="8"
17          UseLayoutRounding="True">
18          <Viewbox Height="120" UseLayoutRounding="True">
19              <Grid>
20                  <Image
21                      x:Name="WallpaperImage"
22                      MaxHeight="200"
23                      Stretch="Uniform"
24                      UseLayoutRounding="True" />
25                  <ContentPresenter
26                      x:Name="ContentPresenter"
27                      Margin="40"
28                      Content="{x:Bind PreviewContent}"
29                      UseLayoutRounding="True" />
30              </Grid>
31          </Viewbox>
32      </Border>
33  
34  </UserControl>