client/src/Iri.Modernisation.Controls/View/ConsultationBookView/AnnotationViewer.xaml
author totetm <>
Fri, 12 Feb 2010 16:22:57 +0100
changeset 47 9b26023b8c83
parent 38 bd33267300aa
permissions -rw-r--r--
Fixed| bug si on ferme un livre en le lisant ReFixed|faire fonctionner le seek, même quand play n'est pas activer
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38
bd33267300aa - FranceCulture Project
totetm <>
parents: 28
diff changeset
     1
<View:MenuableUserControl
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     4
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     5
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     6
	mc:Ignorable="d"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     7
	x:Class="Iri.Modernisation.Controls.View.AnnotationViewer"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     8
    xmlns:Converter="clr-namespace:Iri.Modernisation.Controls.Converter"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     9
	xmlns:View="clr-namespace:Iri.Modernisation.Controls.View" Width="352" Background="Transparent">
38
bd33267300aa - FranceCulture Project
totetm <>
parents: 28
diff changeset
    10
<View:MenuableUserControl.Resources>
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    11
        <View:ArrayToString x:Key="ArrayToString"></View:ArrayToString>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    12
        <Converter:PolemicTypeColorConverter x:Key="PTCC"></Converter:PolemicTypeColorConverter>
38
bd33267300aa - FranceCulture Project
totetm <>
parents: 28
diff changeset
    13
    </View:MenuableUserControl.Resources>
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    14
	<Grid x:Name="AnnotationViewerPanel">
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    15
		<Grid x:Name="AnnotationViewerDisplay" HorizontalAlignment="Left" Margin="0,8" Width="191" Canvas.ZIndex="5">
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    16
			<TextBlock x:Name="AnnotationViewerTitle"  TextWrapping="Wrap" Text="{Binding Title}" VerticalAlignment="Top" Height="16" Margin="20,0,0,0"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    17
			<TextBlock x:Name="AnnotationViewerDescription"  Text="{Binding Description}" TextWrapping="Wrap" Margin="12,16,0,24" d:LayoutOverrides="Height"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    18
			
38
bd33267300aa - FranceCulture Project
totetm <>
parents: 28
diff changeset
    19
			<TextBlock x:Name="AnnotationViewerContributer"  Text="{Binding Contributer.UserName}" TextWrapping="Wrap" TextAlignment="Right" FontSize="10.667" Margin="16,0,0,12" VerticalAlignment="Bottom"/>
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    20
			<StackPanel Orientation="Horizontal" Height="16" Margin="12,0,4,-4" VerticalAlignment="Bottom">
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    21
				<TextBlock Text="Tags:" Height="16" VerticalAlignment="Top"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    22
				<TextBlock x:Name="AnnotationViewerKeyWords"  Text="{Binding Tags, Converter={StaticResource ArrayToString}}"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    23
			</StackPanel>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    24
			<ListBox x:Name="CommentList"  Margin="0,0,0,-8" VerticalAlignment="Bottom"  />
28
2d4ec5ab2a40 Commit Before SL4
Matthieu Totet
parents: 0
diff changeset
    25
			<Rectangle Fill="{Binding Type}" Stroke="Black" Height="16" HorizontalAlignment="Left" VerticalAlignment="Top" Width="16" RenderTransformOrigin="0,0.5"/>
2d4ec5ab2a40 Commit Before SL4
Matthieu Totet
parents: 0
diff changeset
    26
			<Rectangle Fill="{Binding Type}" Stroke="Black" HorizontalAlignment="Left" Margin="0,16,0,0" Width="8"/>
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    27
		</Grid>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    28
		
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    29
        <!-- <View:VideoViewer x:Name="VideoViewer" d:IsPrototypingComposition="True" Margin="191,4,0,0" HorizontalAlignment="Left" Width="161" VerticalAlignment="Top"/> -->
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    30
	
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    31
        </Grid>
38
bd33267300aa - FranceCulture Project
totetm <>
parents: 28
diff changeset
    32
</View:MenuableUserControl>