client/src/Iri.Modernisation.Controls/View/ProductionTimeLine/ProductionTimeLine.xaml
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
mc:Ignorable="d"
x:Class="Iri.Modernisation.Controls.View.ProductionTimeLine"
d:DesignWidth="640" Height="176">
<StackPanel x:Name="BookTimeLinePanel">
<StackPanel x:Name="HeaderBookTimeLinePanel" Orientation="Horizontal">
<Button x:Name="CutSequenceButton" Content="Cut" Width="56"/>
<Button x:Name="InsertSequenceButton" Width="58" Content="Ins"/>
<Button x:Name="DeleteSequenceButton" Width="61" Content="Del" Click="DeleteSequenceButton_Click"/>
<Button x:Name="AddSequenceButton" Width="61" Content="Add" Click="AddSequenceButton_Click"/>
<Slider x:Name="ScaleTimeLine" Width="199" Margin="111,0,0,0" Minimum="600" Maximum="10000" Value="600"/>
</StackPanel>
<ScrollViewer x:Name="TimeLineScroller" Height="154" >
<Grid Height="144" Width="613">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Slider Width="{Binding Value, ElementName=ScaleTimeLine, Mode=OneWay}" x:Name="slider" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.5" SmallChange="0" ValueChanged="slider_ValueChanged"/>
<StackPanel Width="{Binding Value, ElementName=ScaleTimeLine, Mode=OneWay}" x:Name="TimeStrip" Margin="0,21,0,0" d:LayoutOverrides="Width" Orientation="Horizontal" Height="32" VerticalAlignment="Top" />
</Grid>
</ScrollViewer>
</StackPanel>
</UserControl>