|
17
|
1 |
<UserControl
|
|
0
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
17
|
3 |
xmlns:Converter="clr-namespace:Iri.Modernisation.Controls.Converter"
|
|
|
4 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" x:Class="Iri.Modernisation.Controls.View.CustomableVideoElement"
|
|
20
|
5 |
BorderBrush="Black" Width="{Binding Duration}" mc:Ignorable="d">
|
|
17
|
6 |
<UserControl.Resources>
|
|
|
7 |
<Converter:PolemicTypeColorConverter x:Key="PolemicTypeColorConverter"/>
|
|
|
8 |
</UserControl.Resources>
|
|
0
|
9 |
<Grid x:Name="LayoutRoot">
|
|
|
10 |
<ToolTipService.ToolTip>
|
|
|
11 |
<StackPanel Orientation="Horizontal">
|
|
|
12 |
<TextBlock Text="{Binding BeginTrim}"/>
|
|
17
|
13 |
<TextBlock Text="|- "/>
|
|
|
14 |
<TextBlock Text="{Binding DurationTimeSpan}"/>
|
|
|
15 |
<TextBlock Text="-| "/>
|
|
0
|
16 |
<TextBlock Text="{Binding EndTrim}"/>
|
|
|
17 |
|
|
|
18 |
</StackPanel>
|
|
|
19 |
|
|
|
20 |
</ToolTipService.ToolTip>
|
|
17
|
21 |
<Rectangle Fill="{Binding Chapter, Converter={StaticResource PolemicTypeColorConverter}, Mode=TwoWay}" Stroke="Black" StrokeThickness="0"/>
|
|
|
22 |
<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" HorizontalAlignment="Left" Width="2" Cursor="SizeWE" d:LayoutOverrides="HorizontalAlignment"/>
|
|
|
23 |
<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" HorizontalAlignment="Right" Width="2" Cursor="SizeWE" d:LayoutOverrides="HorizontalAlignment"/>
|
|
0
|
24 |
<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="8"/>
|
|
|
25 |
<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="8"/>
|
|
|
26 |
<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Right" VerticalAlignment="Top" Width="8"/>
|
|
|
27 |
<Rectangle Fill="Black" Stroke="Black" StrokeThickness="0" Height="2" HorizontalAlignment="Right" VerticalAlignment="Bottom" Width="8"/>
|
|
|
28 |
</Grid>
|
|
|
29 |
</UserControl>
|