client/src/Iri.Modernisation.Controls/View/Main/Main.xaml
author totetm <>
Mon, 25 Jan 2010 09:30:22 +0100
changeset 35 43bb1b8ed555
parent 28 2d4ec5ab2a40
permissions -rw-r--r--
IRIFiles Class Web Loader and Sender
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     1
<UserControl
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     2
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     3
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     4
     
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     5
    xmlns:View="clr-namespace:Iri.Modernisation.Controls.View;assembly=Iri.Modernisation.Controls"
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     6
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     7
    mc:Ignorable="d" x:Class="Iri.Modernisation.Controls.View.Main"
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     8
    d:DesignHeight="480"
35
43bb1b8ed555 IRIFiles Class
totetm <>
parents: 28
diff changeset
     9
    xmlns:hsl="clr-namespace:HackingSilverlightLibrary;assembly=HackingSilverlightLibrary" KeyDown="UserControl_KeyDown"
12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    10
    >
35
43bb1b8ed555 IRIFiles Class
totetm <>
parents: 28
diff changeset
    11
	
12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    12
    <Grid x:Name="LayoutRoot" Background="Black" >
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    13
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    14
        <View:NavigationBar x:Name="NavigationBarElement" DataContext="{Binding ViewModelNavigationBar}" HorizontalAlignment="Left" d:LayoutOverrides="Width, Height" VerticalAlignment="Top" Grid.RowSpan="2" Margin="5,5,0,0"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    15
        <View:HeaderControl x:Name="HeaderControlElement" DataContext="{Binding ViewModelHeaderControl}" Canvas.ZIndex="1" VerticalAlignment="Top" d:LayoutOverrides="Width, Height" HorizontalAlignment="Right"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    16
        <View:ContextualBinderLayer x:Name="ContextualBinderLayerElement" Canvas.ZIndex="5" Grid.RowSpan="2"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    17
        <View:ClickMenuLayer Canvas.ZIndex="10" Grid.RowSpan="2"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    18
        <hsl:FXFlip x:Name="FlipTest" Flip="True" AutoFlip="False" Margin="265,0,0,0">
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    19
            <hsl:FXFlip.Front>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    20
                <Grid x:Name="frontgrid" >
28
2d4ec5ab2a40 Commit Before SL4
Matthieu Totet
parents: 17
diff changeset
    21
                    <View:ConsultationView x:Name="ConsultationViewElement" DataContext="{Binding ViewModelConsultationView}" Margin="8,40,0,-56" d:LayoutOverrides="Height"/>
12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    22
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    23
                </Grid>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    24
            </hsl:FXFlip.Front>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    25
            <hsl:FXFlip.Back>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    26
                <Grid x:Name="backgrid" >
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 12
diff changeset
    27
                    <View:ProductionView x:Name="ProductionViewElement" DataContext="{Binding ViewModelProductionView}"></View:ProductionView>
12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    28
                </Grid>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    29
            </hsl:FXFlip.Back>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    30
        </hsl:FXFlip>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    31
    </Grid>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    32
</UserControl>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    33