mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
29 lines
No EOL
995 B
XML
29 lines
No EOL
995 B
XML
<ContentControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="50"
|
|
xmlns:c="using:Mesen.Controls"
|
|
x:Name="root"
|
|
HorizontalAlignment="Stretch"
|
|
x:Class="Mesen.Controls.GroupBox"
|
|
>
|
|
<ContentControl.Template>
|
|
<ControlTemplate>
|
|
<Panel>
|
|
<Border BorderBrush="{StaticResource MesenGrayBorderColor}" BorderThickness="1" Margin="0 8 0 3" Padding="5 10 5 8">
|
|
<ContentControl Content="{Binding Content, ElementName=root}" />
|
|
</Border>
|
|
<ContentControl
|
|
Content="{Binding Header, ElementName=root}"
|
|
Background="{DynamicResource ThemeBackgroundBrush}"
|
|
Margin="8 2 0 0"
|
|
Padding="3 0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
/>
|
|
</Panel>
|
|
</ControlTemplate>
|
|
</ContentControl.Template>
|
|
</ContentControl> |