| author | Matthieu Totet |
| Mon, 04 Jan 2010 10:29:39 +0100 | |
| changeset 27 | f292db96b050 |
| parent 24 | c031f1132dde |
| child 30 | 644e3cd48034 |
| permissions | -rw-r--r-- |
| 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}"/>
|
| 21 | 17 |
<View:ProductionEditor DataContext="{Binding ViewModelProductionEditor}" Margin="272,115,0,0" HorizontalAlignment="Left" Height="381" VerticalAlignment="Top"/>
|
|
23
10acb6a11a73
Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents:
21
diff
changeset
|
18 |
<View:VideoViewer DataContext="{Binding ViewModelMasterVideoViewer}" HorizontalAlignment="Right" Margin="0,115,8,204" Width="404"/>
|
| 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> |