client/src/Iri.Modernisation.Controls/View/ProductionTimeLine/CustomableVideoElement.xaml
author Matthieu Totet
Wed, 18 Nov 2009 15:30:31 +0100
changeset 0 249d70e7b32d
child 17 0e4e63f6f567
permissions -rw-r--r--
Create Directories & Project

<UserControl x:Class="Iri.Modernisation.Controls.View.CustomableVideoElement"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" BorderBrush="Black"  Width="{Binding Duration, Mode=OneTime}">
    <Grid x:Name="LayoutRoot">
        <ToolTipService.ToolTip>
            <StackPanel Orientation="Horizontal">
                <TextBlock Text="{Binding BeginTrim}"/>
                <TextBlock Text="|- "></TextBlock>
                <TextBlock Text="{Binding DurationTimeSpan}"></TextBlock>
                <TextBlock Text="-| "></TextBlock>
                <TextBlock Text="{Binding EndTrim}"/>
                
                </StackPanel>

        </ToolTipService.ToolTip>
        <Rectangle Fill="#FFFF0909" Stroke="Black" StrokeThickness="0"/>
    	<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" HorizontalAlignment="Left" Width="5" Cursor="SizeWE"/>
    	<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" HorizontalAlignment="Right" Width="5" Cursor="SizeWE"/>
    	<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="8"/>
    	<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="8"/>
    	<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Right" VerticalAlignment="Top" Width="8"/>
    	<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Width="8"/>
    </Grid>
</UserControl>