mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<UserControl x:Class="Artemis.UI.Screens.Module.ProfileEditor.Visualization.ProfileLayerView"
|
|
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:Artemis.UI.Screens.Module.ProfileEditor.Visualization"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Canvas>
|
|
<!-- The part of the layer's shape that falls outside the layer -->
|
|
<Path Data="{Binding ShapeGeometry, Mode=OneWay}" >
|
|
<Path.Fill>
|
|
<SolidColorBrush Color="{StaticResource Accent700}" Opacity="0.25" />
|
|
</Path.Fill>
|
|
<Path.Stroke>
|
|
<SolidColorBrush Color="{StaticResource Accent700}" />
|
|
</Path.Stroke>
|
|
</Path>
|
|
|
|
<!-- The part of the layer's shape that is inside the layer -->
|
|
<Path Data="{Binding ShapeGeometry, Mode=OneWay}" >
|
|
<Path.Fill>
|
|
<SolidColorBrush Color="{StaticResource Accent700}" Opacity="0.25" />
|
|
</Path.Fill>
|
|
<Path.Stroke>
|
|
<SolidColorBrush Color="{StaticResource Accent700}" />
|
|
</Path.Stroke>
|
|
<Path.OpacityMask>
|
|
<VisualBrush >
|
|
<VisualBrush.Visual>
|
|
<Path Data="{Binding LayerGeometry, Mode=OneWay}" ClipToBounds="False" Fill="Black" />
|
|
</VisualBrush.Visual>
|
|
</VisualBrush>
|
|
</Path.OpacityMask>
|
|
</Path>
|
|
|
|
<Path Data="{Binding LayerGeometry, Mode=OneWay}" ClipToBounds="False" StrokeThickness="1.5" StrokeLineJoin="Round" x:Name="LayerPath">
|
|
<Path.Stroke>
|
|
<SolidColorBrush Color="{StaticResource Accent400}" />
|
|
</Path.Stroke>
|
|
</Path>
|
|
</Canvas>
|
|
</UserControl> |