| 123456789101112131415 | <UserControl x:Class="PunkHPX8_Themes.UserControls.StateTitle"             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"             mc:Ignorable="d"              d:DesignHeight="40" d:DesignWidth="800" x:Name="stateTitle">        <StackPanel Orientation="Horizontal">        <Label  Style="{StaticResource TopLable_LeftTop}" Content="{Binding ElementName=stateTitle,Path=Title}"      HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Width="80" BorderBrush="Silver" BorderThickness="1" VerticalAlignment="Center" Height="30" Background="{Binding ElementName=stateTitle,Path=LabelColor}" Foreground="White"  FontWeight="Bold"/>        <TextBox Style="{StaticResource TextBox_Top}"      Text="{Binding ElementName=stateTitle,Path=TextBoxValue}"  Background="{Binding ElementName=stateTitle,Path=TextBoxColor}" Width="180" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" BorderThickness="1" Height="30" BorderBrush="Black" VerticalAlignment="Center" FontSize="18"/>    </StackPanel></UserControl>
 |