35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<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"
|
|
xmlns:vm="clr-namespace:CtrEditor.ObjetosSim"
|
|
mc:Ignorable="d">
|
|
|
|
<UserControl.DataContext>
|
|
<vm:osSensTemperatura />
|
|
</UserControl.DataContext>
|
|
|
|
<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>
|