123456789101112131415 |
- <UserControl x:Class="Venus_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:Venus_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="100" BorderBrush="White" BorderThickness="1"/>
- <TextBox Style="{StaticResource TextBox_Top}" Text="{Binding ElementName=stateTitle,Path=TextBoxValue}" Background="{Binding ElementName=stateTitle,Path=TextBoxColor}" Width="200" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" BorderThickness="1" BorderBrush="Black" FontSize="25"/>
- </StackPanel>
- </UserControl>
|