client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProduction.xaml
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
mc:Ignorable="d"
x:Class="Iri.Modernisation.Controls.View.HeaderProduction" d:DesignHeight="216" Width="952">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Iri.Modernisation.Styles;Component/Templates_AnnotationMaker.xaml"/>
<ResourceDictionary Source="/Iri.Modernisation.Styles;Component/Templates_CommonTemplate.xaml"/>
</ResourceDictionary.MergedDictionaries>
<Lang:LangResource x:Name="LangLabels" x:Key="LangLabels"></Lang:LangResource>
</ResourceDictionary>
</UserControl.Resources>
<Grid x:Name="HeaderProductionPanel">
<StackPanel x:Name="HeaderProductionOptionPanel" Width="282" Orientation="Horizontal" Height="24" HorizontalAlignment="Left" VerticalAlignment="Top">
<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="HeaderProductionLabel" Text="Mon Video Livre" TextWrapping="Wrap"/>
<Button x:Name="HeaderProductionSaveButton" Input:CommandService.Command="SaveClick" Width="75" Content="Save"/>
<Button x:Name="HeaderProductionPublishButton" Input:CommandService.Command="PublishClick" IsEnabled="{Binding IsVideoBookComplete}" Width="75" Content="Publier"/>
</StackPanel>
<StackPanel x:Name="ChapterStatementPanel" Orientation="Horizontal" Height="111" VerticalAlignment="Top" HorizontalAlignment="Right" Width="708">
<ListBox x:Name="listBox" Width="708" Style="{StaticResource HorizontalListBox}" ItemsSource="{Binding ProductionChapters}" SelectedItem="{Binding SelectedChapter,Mode=TwoWay}">
<ListBox.ItemTemplate>
<DataTemplate>
<View:HeaderProductionChapter />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
<TextBlock x:Name="InstructionText" Text="{Binding Instruction, Mode=OneWay}" TextWrapping="Wrap" FontSize="9.333" HorizontalAlignment="Left" Margin="0,40,0,0" Width="240" Foreground="White"/>
</Grid>
</UserControl>