34 lines
1.7 KiB
XML
34 lines
1.7 KiB
XML
<UserControl x:Class="Common.ParamControlInt"
|
|
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:common="clr-namespace:Common"
|
|
d:DataContext="{d:DesignInstance Type=common:ParamControlIntVm, IsDesignTimeCreatable=True}"
|
|
mc:Ignorable="d"
|
|
Width="Auto"
|
|
Height="Auto">
|
|
<!-- :DataContext="{d:DesignInstance Type=local:AnalogValueVM, IsDesignTimeCreatable=True}" -->
|
|
<!-- Style to see things in the designer-->
|
|
<d:DesignerProperties.DesignStyle>
|
|
<Style TargetType="UserControl">
|
|
<!-- Property="Background" Value="White" /> -->
|
|
<Setter Property="Height" Value="40" />
|
|
<Setter Property="Width" Value="280" />
|
|
</Style>
|
|
</d:DesignerProperties.DesignStyle>
|
|
<Grid Height="Auto">
|
|
<Grid.ColumnDefinitions>
|
|
<!-- <ColumnDefinition Width="Auto" /> -->
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- <Label Grid.Column="0" Content="{Binding SName}" VerticalAlignment="Center" HorizontalAlignment="Left"/> -->
|
|
<Label x:Name="tbName" Grid.Column="0" Content="{Binding SName, Mode=OneWay }" Width="200"/>
|
|
<TextBox x:Name="tbValue" Text="{Binding Value, Mode=TwoWay}" Grid.Column="1" MaxLines="1" Width="80" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" IsReadOnly="{Binding Readonly}" />
|
|
|
|
|
|
</Grid>
|
|
</UserControl>
|