client/src/Iri.Modernisation.Controls/View/ProductionTimeLine/ProductionTimeLine.xaml
author Matthieu Totet
Thu, 19 Nov 2009 17:07:45 +0100
changeset 5 ee4ddd15fb5d
parent 0 249d70e7b32d
child 17 0e4e63f6f567
permissions -rw-r--r--
Add informations about some build bug fixes

<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>