client/src/Iri.Modernisation.Controls/View/HeaderProduction/HeaderProductionChapter.xaml
author totetm <>
Wed, 10 Feb 2010 14:56:46 +0100
changeset 41 b51a10574e7f
parent 38 bd33267300aa
permissions -rw-r--r--
LeftClick on an element in BookTimeLine set time at begining of the element.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     1
<UserControl
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     4
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     5
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     6
	mc:Ignorable="d"
27
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
     7
	
26
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     8
	 xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions"
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
     9
	xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    10
	 xmlns:Lang="clr-namespace:Iri.Modernisation.Lang;assembly=Iri.Modernisation.Lang"
27
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    11
xmlns:Converter="clr-namespace:Iri.Modernisation.Controls.Converter"
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    12
	x:Class="Iri.Modernisation.Controls.View.HeaderProductionChapter" 
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    13
	
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    14
	d:DesignHeight="104"
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    15
    >
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    16
    <UserControl.Resources>
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    17
    <Converter:BoolToVisibility x:Key="BoolToVisibility"></Converter:BoolToVisibility>
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    18
    </UserControl.Resources>
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    19
    <StackPanel x:Name="ChapterPanel_Modernisation" Width="176" RenderTransformOrigin="0.5,0.5">
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    20
				<TextBlock Style="{StaticResource CommonTextBlock}" x:Name="ChapterTitleLabel"  Text="{Binding Title}"  TextWrapping="Wrap"/>
26
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    21
				<StackPanel x:Name="ChapterPanel" Height="82" Margin="8,0,19,0">
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    22
					<Grid x:Name="EPanel" Height="27" HorizontalAlignment="Left" Width="149">
27
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    23
					    <View:HeaderProductionPartControler HighLighted="{Binding HighLight}"  x:Name="EditionController" Active="{Binding IsActive}" d:LayoutOverrides="VerticalMargin"/>
26
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    24
					</Grid>
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    25
					<Grid x:Name="IPanel" Height="27" HorizontalAlignment="Left" Width="149">
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    26
						
27
f292db96b050 Generalization of Book Structure
Matthieu Totet
parents: 26
diff changeset
    27
						<View:HeaderProductionPartControler  HighLighted="{Binding HighLight}" Active="{Binding Editing}" x:Name="IndexController" Text="Indexation"/>
26
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    28
						</Grid>
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    29
					<Grid x:Name="EnPanel" Height="28" HorizontalAlignment="Left" Width="149" RenderTransformOrigin="0.5,0.5">
38
bd33267300aa - FranceCulture Project
totetm <>
parents: 27
diff changeset
    30
						<View:HeaderProductionPartControler  HighLighted="{Binding HighLight}"  x:Name="EnrichmentController" Text="Enrichissement"/>
26
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    31
					</Grid>
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    32
				</StackPanel>
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    33
			</StackPanel>
44a2dc869e28 Save before big changes on HeaderProduction
Matthieu Totet
parents:
diff changeset
    34
</UserControl>