Files
DP44/Common/DTS.CommonCore/Controls/RoundedBox.xaml
2026-04-17 14:55:32 -04:00

28 lines
1.7 KiB
XML

<UserControl x:Class="DTS.Common.Controls.RoundedBox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<Grid Margin="-6,-5,-12,-13">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="20"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="27"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="20"/>
<RowDefinition Height="*"/>
<RowDefinition Height="27"/>
</Grid.RowDefinitions>
<Image Height="20" Width="20" Source="../Images/shadow_tl.png" Stretch="Fill"/>
<Image Height="20" Grid.Row="0" Grid.Column="1" Source="../Images/shadow_t.png" Stretch="Fill"/>
<Image Height="20" Width="27" Grid.Row="0" Grid.Column="2" Source="../Images/shadow_tr.png" Stretch="Fill"/>
<Image Width="27" Grid.Column="2" Grid.Row="1" Source="../Images/shadow_r.png" Stretch="Fill"/>
<Image Width="20" Grid.Row="1" Grid.Column="0" Source="../Images/shadow_l.png" Stretch="Fill"/>
<Image Height="27" Grid.Column="1" Grid.Row="2" Source="../Images/shadow_b.png" Stretch="Fill" />
<Image Height="27" Width="20" Grid.Row="2" Grid.Column="0" Source="../Images/shadow_bl.png" Stretch="Fill"/>
<Image Height="27" Width="27" Grid.Column="2" Grid.Row="2" Source="../Images/shadow_br.png" Stretch="Fill"/>
</Grid>
<Border Background="#99FFFFFF" Opacity="0.8" CornerRadius="12,12,12,12" VerticalAlignment="Stretch" />
</Grid>
</UserControl>