client/src/Iri.Modernisation.Controls/View/ClickMenu/ClickMenu.xaml
author Matthieu Totet
Wed, 18 Nov 2009 15:30:31 +0100
changeset 0 249d70e7b32d
child 8 2482ddb44cb6
permissions -rw-r--r--
Create Directories & Project
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" 
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    10
    
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    11
    >
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    12
	<UserControl.Background>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    13
		<SolidColorBrush/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    14
	</UserControl.Background>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    15
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    16
	<Grid  x:Name="LayoutRoot" Margin="0,0,0,-8" MouseLeftButtonUp="LayoutRoot_MouseLeftButtonUp" Background="Transparent">
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    17
		
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    18
		<local:ClickMenuPanelAnnoter x:Name="_annoterPanel" Margin="47,5,0,0" VerticalAlignment="Top" d:LayoutOverrides="Width, Height" HorizontalAlignment="Left"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    19
		<local:ClickMenuPanelContextualiser x:Name="_contextualiserPanel" VerticalAlignment="Top" d:LayoutOverrides="Width, Height" Margin="37,49,0,0" HorizontalAlignment="Left"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    20
		<local:ClickMenuItem  Title="Localiser" x:Name="_localiserItem" HorizontalAlignment="Left" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height" Margin="26,4,0,0"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    21
		<local:ClickMenuItem Title="Chutier" x:Name="_chutierItem" HorizontalAlignment="Left" Margin="3,21,0,0" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    22
		<local:ClickMenuItem Title="Copier"  x:Name="_copierItem" HorizontalAlignment="Left" Margin="11,48,0,0" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment, VerticalAlignment, Height"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    23
		<TextBlock x:Name="textBlock" Height="16" Margin="3,0,0,0" VerticalAlignment="Bottom" TextWrapping="Wrap"/>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    24
	</Grid>
249d70e7b32d Create Directories & Project
Matthieu Totet
parents:
diff changeset
    25
</UserControl>