PowerToys/src/modules/launcher/PowerLauncher/CheatSheetControl.xaml
2021-06-06 15:32:21 +02:00

24 lines
1,015 B
XML

<UserControl x:Class="PowerLauncher.CheatSheetControl"
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"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:PowerLauncher"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Rectangle RadiusX="4"
RadiusY="4"
Fill="{DynamicResource SystemChromeLow}"
Stroke="{DynamicResource DialogBorderBrush}"
StrokeThickness="1">
<Rectangle.Effect>
<DropShadowEffect BlurRadius="32"
Opacity="0.28"
ShadowDepth="1" />
</Rectangle.Effect>
</Rectangle>
</Grid>
</UserControl>