PressureBlockControl.xaml 928 B

1234567891011121314
  1. <UserControl x:Class="CyberX8_Themes.UserControls.PressureBlockControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:CyberX8_Themes.UserControls"
  7. mc:Ignorable="d" Name="self"
  8. d:DesignHeight="40" d:DesignWidth="60">
  9. <Grid>
  10. <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="18" Width="60" Background="{Binding ElementName=self,Path=BackgroundColor}"
  11. Foreground="{Binding ElementName=self,Path=ForeColor}" Text="{Binding ElementName=self,Path=Value,StringFormat=\{0:F2\}}"></TextBlock>
  12. </Grid>
  13. </UserControl>