34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
|
<UserControl x:Class="CtrEditor.ObjetosSim.ucSensTemperatura"
|
||
|
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:CtrEditor.ObjetosSim"
|
||
|
mc:Ignorable="d"
|
||
|
xmlns:convert="clr-namespace:CtrEditor.Convertidores">
|
||
|
|
||
|
<UserControl.Resources>
|
||
|
<convert:MeterToPixelConverter x:Key="MeterToPixelConverter"/>
|
||
|
</UserControl.Resources>
|
||
|
<Grid>
|
||
|
<Border x:Name="BackgroundRectangle"
|
||
|
BorderBrush="Black"
|
||
|
BorderThickness="2"
|
||
|
Height="{Binding Alto, Converter={StaticResource MeterToPixelConverter}, ConverterParameter=1.5}"
|
||
|
VerticalAlignment="Top"
|
||
|
Background="Gray"
|
||
|
HorizontalAlignment="Center"
|
||
|
Width="{Binding Ancho, Converter={StaticResource MeterToPixelConverter}}">
|
||
|
<Grid>
|
||
|
<Slider
|
||
|
HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Center"
|
||
|
Height="{Binding Alto, Converter={StaticResource MeterToPixelConverter}}"
|
||
|
Orientation="Vertical"
|
||
|
Value="{Binding Value}"
|
||
|
Maximum="100"/>
|
||
|
</Grid>
|
||
|
</Border>
|
||
|
</Grid>
|
||
|
</UserControl>
|