| 12345678910111213141516171819 | <UserControl x:Class="CyberX8_Themes.UserControls.TextboxWithLabel"             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:CyberX8_Themes.UserControls"             mc:Ignorable="d" d:DesignWidth="80"              x:Name="tblabel">    <StackPanel>        <TextBlock Text="{Binding ElementName=tblabel,Path=LabelValue}"  TextWrapping="Wrap" Block.TextAlignment="Center"/>        <TextBox  x:Name="tb" Text="{Binding ElementName=tblabel,Path=TextBoxValue,UpdateSourceTrigger=PropertyChanged}"                    Foreground="Lime" FontSize="13" FontWeight="Bold"  Width="80" Height="25"                   IsReadOnly="{Binding ElementName=tblabel,Path=IsReadOnly}"  Background="{Binding ElementName=tblabel,Path=TextBoxColor}"                   VerticalContentAlignment="Center" HorizontalContentAlignment="Center"/>    </StackPanel></UserControl>
 |