mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
22 lines
1 KiB
Text
22 lines
1 KiB
Text
|
<UserControl x:Class="SourceGit.UI.PopupManager"
|
||
|
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"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="450" d:DesignWidth="800"
|
||
|
Visibility="Collapsed">
|
||
|
<Grid ClipToBounds="True">
|
||
|
<Border Background="Transparent" MouseLeftButtonDown="Close"/>
|
||
|
|
||
|
<Grid HorizontalAlignment="Center" VerticalAlignment="Top" Width="Auto" Height="Auto">
|
||
|
<Border Background="{StaticResource Brush.BG1}">
|
||
|
<Border.Effect>
|
||
|
<DropShadowEffect ShadowDepth="1" Opacity=".5" Direction="270" BlurRadius="16"/>
|
||
|
</Border.Effect>
|
||
|
</Border>
|
||
|
<Border x:Name="popupContent" Padding="8" Width="Auto" Height="Auto"/>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</UserControl>
|