deeb25a2| 1 | <UserControl xmlns="https://github.com/avaloniaui" |
| 2 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 3 | x:Class="CascadeIDE.Features.UiChrome.ModalOverlay" |
| 4 | x:Name="Root"> |
| 5 | <Border x:Name="Dimmer" |
| 6 | Background="{Binding DimmerBrush, ElementName=Root}" |
| 7 | PointerPressed="OnDimmerPointerPressed"> |
| 8 | <Grid MaxWidth="{Binding MaxPanelWidth, ElementName=Root}" |
| 9 | MaxHeight="{Binding MaxPanelHeight, ElementName=Root}" |
| 10 | Margin="{Binding PanelMargin, ElementName=Root}" |
| 11 | HorizontalAlignment="Center" |
| 12 | VerticalAlignment="{Binding PanelVerticalAlignment, ElementName=Root}" |
| 13 | PointerPressed="OnPanelPointerPressed"> |
| 14 | <ContentPresenter Content="{Binding Child, ElementName=Root}" /> |
| 15 | </Grid> |
| 16 | </Border> |
| 17 | </UserControl> |
| 18 | |
View only · write via MCP/CIDE