70716d68f7
- Spostamento VM e funzioni generiche di Simulazione e Stime da EgtCAM5 e OmagOFFICE alla Libreria
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
<UserControl x:Class="EstimationsExpanderV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5">
|
|
|
|
<StackPanel>
|
|
|
|
<Expander Header="{Binding EstimationMsg}"
|
|
IsExpanded="{Binding Estimation_IsExpanded}"
|
|
IsEnabled="{Binding Estimation_IsEnabled}"
|
|
Style="{StaticResource ExpanderStyle}">
|
|
|
|
<StackPanel Margin="2,2,2,0">
|
|
|
|
<UniformGrid Columns="2" Margin="0,0,0,5">
|
|
|
|
<TextBlock Text="{Binding TimeMsg}"/>
|
|
<TextBox Text="{Binding Time, Mode=OneWay}"
|
|
IsReadOnly="True"
|
|
TextAlignment="Right"/>
|
|
|
|
</UniformGrid>
|
|
|
|
<UniformGrid Columns="2" Margin="0,0,0,5">
|
|
|
|
<TextBlock Text="{Binding CutLenMsg}"/>
|
|
<TextBox Text="{Binding CutLen, Mode=OneWay}"
|
|
IsReadOnly="True"
|
|
TextAlignment="Right"/>
|
|
|
|
</UniformGrid>
|
|
|
|
<Button Content="{Binding DetailsMsg}" Height="30"
|
|
Command="{Binding Details_Command}"
|
|
Margin="0,0,0,2"/>
|
|
|
|
</StackPanel>
|
|
|
|
</Expander>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|