12345678910111213141516171819202122232425262728 |
- <UserControl x:Class="CyberX8_Themes.UserControls.PumpSpeedControl"
- 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" x:Name="self"
- d:DesignHeight="90" d:DesignWidth="320">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="2*"/>
- <ColumnDefinition Width="2*"/>
- <ColumnDefinition Width="60"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="40"/>
- <RowDefinition Height="50"/>
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Content="Pump Speed(RPM)" FontSize="16" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
- <TextBox Grid.Row="1" Grid.Column="0" Margin="5" FontSize="15" FontWeight="Bold" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Text="{Binding ElementName=self,Path=PumpSpeed,Mode=TwoWay}"/>
- <Border Grid.Row="1" Grid.Column="1" Margin="5,5,5,5" Background="Black">
- <TextBlock Text="{Binding ElementName=self, Path=PumpSpeed,StringFormat=\{0:F1\} rpm}" Foreground="Lime" FontSize="15" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- <Button Grid.Row="1" Grid.Column="2" Style="{StaticResource SysBtnStyle}" Height="40" Width="60" HorizontalAlignment="Center" Content="Set" Click="SetPumpSpeed_Click"/>
- </Grid>
- </UserControl>
|