1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<UserControl x:Class="ThreeSixty.SLAViewer.View.SLAView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="226" Width="225">
<GroupBox Header="{Binding Path=name}" >
<Grid>
<TextBlock Text="Type de SLA" Height="20" Margin="0,0,0,182" VerticalAlignment="Bottom" />
<ComboBox SelectedItem="{Binding Path=kind}" ItemsSource="{Binding Path=EnumValues}" Margin="0,0,6,182" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
<TextBlock Text="Durée" Height="20" Margin="0,0,0,160" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=typicalActivityDuration}" Margin="0,0,6,160" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
<TextBlock Text="Valeur de base" Height="20" Margin="0,0,0,138" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=baseValue}" Margin="0,0,6,138" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
<TextBlock Text="Start Proportion" Height="20" Margin="0,0,0,116" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=startProportion}" Margin="0,0,6,116" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
<TextBlock Text="End Proportion" Height="20" Margin="0,0,0,94" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=endProportion}" Margin="0,0,6,94" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
<TextBlock Text="Curve Shape" Height="20" Margin="0,0,0,72" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=curveShape}" Margin="0,0,6,72" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100"/>
<TextBlock Text="Ageing Factor" Height="20" Margin="0,0,0,50" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=ageingFactor}" Margin="0,0,6,50" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100"/>
<TextBlock Text="Début du SLA" Height="20" Margin="0,0,0,28" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=_start}" Margin="0,0,6,28" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
<TextBlock Text="Fin du SLA" Height="20" Margin="0,0,0,6" VerticalAlignment="Bottom" />
<TextBox Text="{Binding Path=_end}" Margin="0,0,6,6" Height="20" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="100" />
</Grid>
</GroupBox>
</UserControl> |
Partager