StateTitle.xaml 1.3 KB

123456789101112131415
  1. <UserControl x:Class="CyberX8_Themes.UserControls.StateTitle"
  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"
  8. d:DesignHeight="40" d:DesignWidth="800" x:Name="stateTitle">
  9. <StackPanel Orientation="Horizontal">
  10. <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"/>
  11. <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"/>
  12. </StackPanel>
  13. </UserControl>