<UserControl x:Class="CyberX8_Themes.UserControls.PressureBlockControl" 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" Name="self" d:DesignHeight="40" d:DesignWidth="60"> <Grid> <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="18" Width="60" Background="{Binding ElementName=self,Path=BackgroundColor}" Foreground="{Binding ElementName=self,Path=ForeColor}" Text="{Binding ElementName=self,Path=Value,StringFormat=\{0:F2\}}"></TextBlock> </Grid> </UserControl>