| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | <UserControl x:Class="PunkHPX8_Themes.UserControls.PUFChamber"             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:PunkHPX8_Themes.UserControls"             xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"             xmlns:converters="clr-namespace:PunkHPX8_Themes.Converters"             mc:Ignorable="d"              d:DesignHeight="220" d:DesignWidth="210" Name="pufChamber">    <Viewbox Stretch="Fill">        <Viewbox.RenderTransform>            <TransformGroup>                <RotateTransform Angle="{Binding ElementName=pufChamber,Path=RotateTransformValue}"/>            </TransformGroup>        </Viewbox.RenderTransform>        <Border>                        <Canvas Width="210" Height="220">                <StackPanel Canvas.Top="70" Canvas.Left="5" Panel.ZIndex="99">                    <TextBlock  FontSize="30" Text="{Binding ElementName=pufChamber,Path= PufName }" TextAlignment="Center" Width="200"/>                </StackPanel>                <Polygon Stroke="Black"  StrokeThickness="2" Points="5,210 5,10 205,10 205,210">                    <Polygon.Fill>                        <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">                            <GradientStop Color="Silver" Offset="0.0" />                            <GradientStop Color="White" Offset="0.5" />                            <GradientStop Color="Silver" Offset="1" />                        </LinearGradientBrush>                    </Polygon.Fill>                    <Polygon.Effect>                        <DropShadowEffect Color="LightGray" Direction="0" ShadowDepth="5" Opacity="1" BlurRadius="10"/>                    </Polygon.Effect>                </Polygon>                <Polygon Stroke="Black" StrokeThickness="1" Points="5,210 205,210 210,220 0,220">                    <Polygon.Fill>                        <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">                            <GradientStop Color="Silver" Offset="0.0" />                            <GradientStop Color="White" Offset="0.5" />                            <GradientStop Color="Silver" Offset="1" />                        </LinearGradientBrush>                    </Polygon.Fill>                    <Polygon.Effect>                        <DropShadowEffect Color="LightGray" Direction="0" ShadowDepth="5" Opacity="1" />                    </Polygon.Effect>                </Polygon>                <Polygon Stroke="Black" StrokeThickness="1" Points="5,10 0,0 210,0 205,10">                    <Polygon.Fill>                        <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">                            <GradientStop Color="Silver" Offset="0.0" />                            <GradientStop Color="White" Offset="0.5" />                            <GradientStop Color="Silver" Offset="1" />                        </LinearGradientBrush>                    </Polygon.Fill>                    <Polygon.Effect>                        <DropShadowEffect Color="LightGray" Direction="0" ShadowDepth="5" Opacity="1" />                    </Polygon.Effect>                </Polygon>            </Canvas>        </Border>    </Viewbox></UserControl>
 |