|
0
|
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 |
xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
|
|
17
|
7 |
xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
|
|
|
8 |
xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
|
|
|
9 |
|
|
0
|
10 |
mc:Ignorable="d"
|
|
|
11 |
x:Class="Iri.Modernisation.Controls.View.HeaderProduction" d:DesignHeight="216" Width="952">
|
|
17
|
12 |
<UserControl.Resources>
|
|
27
|
13 |
<ResourceDictionary>
|
|
|
14 |
<ResourceDictionary.MergedDictionaries>
|
|
|
15 |
<ResourceDictionary Source="/Iri.Modernisation.Styles;Component/Templates_AnnotationMaker.xaml"/>
|
|
|
16 |
<ResourceDictionary Source="/Iri.Modernisation.Styles;Component/Templates_CommonTemplate.xaml"/>
|
|
|
17 |
|
|
|
18 |
</ResourceDictionary.MergedDictionaries>
|
|
|
19 |
<Lang:LangResource x:Name="LangLabels" x:Key="LangLabels"></Lang:LangResource>
|
|
|
20 |
</ResourceDictionary>
|
|
|
21 |
|
|
17
|
22 |
|
|
|
23 |
</UserControl.Resources>
|
|
0
|
24 |
<Grid x:Name="HeaderProductionPanel">
|
|
|
25 |
<StackPanel x:Name="HeaderProductionOptionPanel" Width="282" Orientation="Horizontal" Height="24" HorizontalAlignment="Left" VerticalAlignment="Top">
|
|
|
26 |
<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="HeaderProductionLabel" Text="Mon Video Livre" TextWrapping="Wrap"/>
|
|
|
27 |
<Button x:Name="HeaderProductionSaveButton" Input:CommandService.Command="SaveClick" Width="75" Content="Save"/>
|
|
|
28 |
<Button x:Name="HeaderProductionPublishButton" Input:CommandService.Command="PublishClick" IsEnabled="{Binding IsVideoBookComplete}" Width="75" Content="Publier"/>
|
|
|
29 |
</StackPanel>
|
|
|
30 |
<StackPanel x:Name="ChapterStatementPanel" Orientation="Horizontal" Height="111" VerticalAlignment="Top" HorizontalAlignment="Right" Width="708">
|
|
27
|
31 |
<ListBox x:Name="listBox" Width="708" Style="{StaticResource HorizontalListBox}" ItemsSource="{Binding ProductionChapters}" SelectedItem="{Binding SelectedChapter,Mode=TwoWay}">
|
|
|
32 |
<ListBox.ItemTemplate>
|
|
|
33 |
<DataTemplate>
|
|
38
|
34 |
<View:HeaderProductionChapter />
|
|
27
|
35 |
</DataTemplate>
|
|
|
36 |
</ListBox.ItemTemplate>
|
|
|
37 |
</ListBox>
|
|
0
|
38 |
</StackPanel>
|
|
24
|
39 |
<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"/>
|
|
0
|
40 |
</Grid>
|
|
|
41 |
</UserControl> |