client/src/Iri.Modernisation.Controls/View/ClickMenu/ClickMenu.xaml
author totetm <>
Fri, 12 Feb 2010 16:22:57 +0100
changeset 47 9b26023b8c83
parent 30 644e3cd48034
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:
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     1
<UserControl
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
	xmlns:local="clr-namespace:Iri.Modernisation.Controls.View"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     8
	x:Class="Iri.Modernisation.Controls.View.ClickMenu" BorderThickness="2,2,0,0" Height="120" Width="152"
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
     9
    xmlns:Input="clr-namespace:SLExtensions.Input;assembly=SLExtensions" 
30
644e3cd48034 Introduce in Web context
totetm <>
parents: 8
diff changeset
    10
    Visibility="Collapsed"
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    11
    
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    12
    >
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    13
	<UserControl.Background>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    14
		<SolidColorBrush/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    15
	</UserControl.Background>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    16
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    17
	<Grid  x:Name="LayoutRoot" Margin="0,0,0,-8" MouseLeftButtonUp="LayoutRoot_MouseLeftButtonUp" Background="Transparent">
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    18
		
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    19
		<local:ClickMenuPanelAnnoter x:Name="_annoterPanel" Margin="47,5,0,0" VerticalAlignment="Top" d:LayoutOverrides="Width, Height" HorizontalAlignment="Left"/>
8
2482ddb44cb6 ClickMenuItem modification : path rotation & image display
Matthieu Totet
parents: 0
diff changeset
    20
		<local:ClickMenuPanelContextualiser  x:Name="_contextualiserPanel" VerticalAlignment="Top" d:LayoutOverrides="Width, Height" Margin="37,49,0,0" HorizontalAlignment="Left"/>
2482ddb44cb6 ClickMenuItem modification : path rotation & image display
Matthieu Totet
parents: 0
diff changeset
    21
		<local:ClickMenuItem Orientation="Up" Title="Localiser" x:Name="_localiserItem" HorizontalAlignment="Left" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height" Margin="26,4,0,0"/>
2482ddb44cb6 ClickMenuItem modification : path rotation & image display
Matthieu Totet
parents: 0
diff changeset
    22
		<local:ClickMenuItem Orientation="Up" Title="Chutier" x:Name="_chutierItem" HorizontalAlignment="Left" Margin="3,21,0,0" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height"/>
2482ddb44cb6 ClickMenuItem modification : path rotation & image display
Matthieu Totet
parents: 0
diff changeset
    23
		<local:ClickMenuItem Orientation="Up" ImageSource="icons/home.png"  Title="Copier"  x:Name="_copierItem" HorizontalAlignment="Left" Margin="11,48,0,0" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height"/>
0
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    24
		<TextBlock x:Name="textBlock" Height="16" Margin="3,0,0,0" VerticalAlignment="Bottom" TextWrapping="Wrap"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    25
	</Grid>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    26
</UserControl>