|
26
|
1 |
<UserControl
|
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
6 |
mc:Ignorable="d"
|
|
|
7 |
xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
|
|
|
8 |
xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
|
|
|
9 |
xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
|
|
|
10 |
|
|
|
11 |
x:Class="Iri.Modernisation.Controls.HeaderProductionChapter" d:DesignHeight="104">
|
|
|
12 |
|
|
|
13 |
<StackPanel x:Name="ChapterPanel_Modernisation" Width="176" RenderTransformOrigin="0.5,0.5">
|
|
|
14 |
<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="ChapterTitleLabel" Text="Modernisation" TextWrapping="Wrap"/>
|
|
|
15 |
<StackPanel x:Name="ChapterPanel" Height="82" Margin="8,0,19,0">
|
|
|
16 |
<Grid x:Name="EPanel" Height="27" HorizontalAlignment="Left" Width="149">
|
|
|
17 |
<View:HeaderProductionPartControler x:Name="EditionController" Text="{Binding EditingLabel, Source={StaticResource LangLabels}}" d:LayoutOverrides="VerticalMargin"/>
|
|
|
18 |
</Grid>
|
|
|
19 |
<Grid x:Name="IPanel" Height="27" HorizontalAlignment="Left" Width="149">
|
|
|
20 |
|
|
|
21 |
<View:HeaderProductionPartControler IsActive="{Binding IsChap01IndexingEnable}" x:Name="IndexController" Text="Indexation"/>
|
|
|
22 |
</Grid>
|
|
|
23 |
<Grid x:Name="EnPanel" Height="28" HorizontalAlignment="Left" Width="149" RenderTransformOrigin="0.5,0.5">
|
|
|
24 |
<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="EnLabel" Text="Enrichissement" TextWrapping="Wrap" d:LayoutOverrides="HorizontalAlignment"/>
|
|
|
25 |
</Grid>
|
|
|
26 |
</StackPanel>
|
|
|
27 |
</StackPanel>
|
|
|
28 |
</UserControl> |