| author | Matthieu Totet |
| Tue, 05 Jan 2010 15:53:48 +0100 | |
| changeset 28 | 2d4ec5ab2a40 |
| parent 26 | 44a2dc869e28 |
| child 35 | 43bb1b8ed555 |
| 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:d="http://schemas.microsoft.com/expression/blend/2008" |
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
6 |
mc:Ignorable="d" |
|
7 |
||
8 |
x:Class="Iri.Modernisation.Controls.View.ProductionTimeLine" |
|
9 |
d:DesignWidth="640" Height="176"> |
|
10 |
||
| 20 | 11 |
<StackPanel x:Name="BookTimeLinePanel" Background="#FF1C1C1C"> |
| 0 | 12 |
<StackPanel x:Name="HeaderBookTimeLinePanel" Orientation="Horizontal"> |
13 |
<Button x:Name="CutSequenceButton" Content="Cut" Width="56"/> |
|
14 |
<Button x:Name="InsertSequenceButton" Width="58" Content="Ins"/> |
|
15 |
<Button x:Name="DeleteSequenceButton" Width="61" Content="Del" Click="DeleteSequenceButton_Click"/> |
|
|
23
10acb6a11a73
Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents:
20
diff
changeset
|
16 |
<Button x:Name="AddSequenceButton" Width="61" Content="{Binding TotalBookDuration}" Click="AddSequenceButton_Click"/>
|
| 28 | 17 |
<Slider x:Name="ScaleTimeLine" Width="199" Margin="111,0,0,0" Minimum="{Binding ActualWidth, ElementName=TimeLineScroller, Mode=OneWay}" Maximum="10000" Value="600"/>
|
| 0 | 18 |
</StackPanel> |
|
23
10acb6a11a73
Update VideoViewer ( Allow Multi-VideoViewer)
Matthieu Totet
parents:
20
diff
changeset
|
19 |
<ScrollViewer x:Name="TimeLineScroller" VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Visible" Height="154" > |
| 28 | 20 |
<Grid HorizontalAlignment="Left" Width="{Binding Value, ElementName=ScaleTimeLine, Mode=OneWay}">
|
| 0 | 21 |
<Grid.ColumnDefinitions> |
22 |
<ColumnDefinition/> |
|
23 |
</Grid.ColumnDefinitions> |
|
| 24 | 24 |
<Slider x:Name="TimeSlider" Value="{Binding Position,Mode=TwoWay}" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5" SmallChange="0" />
|
25 |
<StackPanel x:Name="VideoTimeStrip" Margin="0,21,0,0" Orientation="Horizontal" Height="32" VerticalAlignment="Top" HorizontalAlignment="Left"> |
|
| 19 | 26 |
<!--<StackPanel Orientation="Horizontal" x:Name="ModenisationVideoTimeStrip"></StackPanel> |
27 |
<StackPanel Orientation="Horizontal" x:Name="ModeniteVideoTimeStrip"></StackPanel> |
|
28 |
<StackPanel Orientation="Horizontal" x:Name="PostModerniteVideoTimeStrip"></StackPanel> |
|
29 |
<StackPanel Orientation="Horizontal" x:Name="OuvertureVideoTimeStrip"></StackPanel>--> |
|
30 |
</StackPanel> |
|
| 24 | 31 |
<StackPanel x:Name="AnnotationTimeStrip" Margin="0,57,0,53" Orientation="Horizontal" d:LayoutOverrides="VerticalAlignment" HorizontalAlignment="Left" /> |
| 0 | 32 |
</Grid> |
33 |
</ScrollViewer> |
|
34 |
</StackPanel> |
|
35 |
</UserControl> |