|
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:View="clr-namespace:Iri.Modernisation.Controls.View"
|
|
19
|
5 |
xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
|
|
|
6 |
xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
|
|
|
7 |
|
|
|
8 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" x:Class="Iri.Modernisation.Controls.View.ProductionView" mc:Ignorable="d" Height="688">
|
|
|
9 |
<UserControl.Resources>
|
|
|
10 |
<Lang:LangResource x:Name="LangLabels" x:Key="LangLabels"></Lang:LangResource>
|
|
|
11 |
|
|
|
12 |
</UserControl.Resources>
|
|
|
13 |
<Grid x:Name="LayoutRoot">
|
|
0
|
14 |
|
|
17
|
15 |
<View:HeaderProduction DataContext="{Binding ViewModelHeaderProduction}" x:Name="HeaderProductionElement" HorizontalAlignment="Left" VerticalAlignment="Top" d:LayoutOverrides="VerticalAlignment"/>
|
|
19
|
16 |
<View:ProductionTimeLine x:Name="ProductionTimeLineElement" Height="176" VerticalAlignment="Bottom" DataContext="{Binding ViewModelProductionTimeLine}"/>
|
|
35
|
17 |
<View:ProductionEditor DataContext="{Binding ViewModelProductionEditor}" Margin="260,127,409,180" Height="381" d:LayoutOverrides="HorizontalAlignment"/>
|
|
|
18 |
<View:VideoViewer DataContext="{Binding ViewModelMasterVideoViewer}" Margin="0,144,20,201" Height="343" HorizontalAlignment="Right" Width="385"/>
|
|
24
|
19 |
<StackPanel x:Name="RecordsPanel" HorizontalAlignment="Left" Margin="8,288,0,192" Width="248">
|
|
19
|
20 |
<TextBlock Style="{StaticResource CommonTextBlock}" Text="{Binding RecordsLabel, Source={StaticResource LangLabels}}" x:Name="RecordLabel" TextWrapping="Wrap"/>
|
|
24
|
21 |
<ListBox SelectedItem="{Binding SelectedVideoSequence,Mode=TwoWay}" x:Name="RecordsList" ItemsSource="{Binding RecordedVideoSequences}" Height="152">
|
|
19
|
22 |
<ListBox.ItemTemplate>
|
|
|
23 |
<DataTemplate>
|
|
|
24 |
<StackPanel Orientation="Horizontal">
|
|
|
25 |
<TextBlock Text="{Binding Path}"/><TextBlock Text="-"/><TextBlock Text="{Binding RunTime}"/>
|
|
|
26 |
</StackPanel>
|
|
|
27 |
</DataTemplate>
|
|
|
28 |
</ListBox.ItemTemplate>
|
|
|
29 |
</ListBox>
|
|
20
|
30 |
<Button Content="+ (Enregistrement)" x:Name="AddSelectedRecord" Input:CommandService.Command="ClickAddSelectedRecord"></Button>
|
|
|
31 |
<Button Content="+ (Index)" x:Name="AddIndex" Input:CommandService.Command="ClickAddIndex"></Button>
|
|
|
32 |
</StackPanel>
|
|
0
|
33 |
|
|
|
34 |
</Grid>
|
|
|
35 |
</UserControl>
|