client/src/Iri.Modernisation.Controls/View/Main/Main.xaml
author Matthieu Totet
Thu, 03 Dec 2009 16:05:57 +0100
changeset 17 0e4e63f6f567
parent 12 513caf1637bf
child 28 2d4ec5ab2a40
permissions -rw-r--r--
Update ProductinoView and Components
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"
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
     9
    xmlns:hsl="clr-namespace:HackingSilverlightLibrary;assembly=HackingSilverlightLibrary"
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    10
    >
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    11
    <Grid x:Name="LayoutRoot" Background="Black" >
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    13
        <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
    14
        <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
    15
        <View:ContextualBinderLayer x:Name="ContextualBinderLayerElement" Canvas.ZIndex="5" Grid.RowSpan="2"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    16
        <View:ClickMenuLayer Canvas.ZIndex="10" Grid.RowSpan="2"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    17
        <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
    18
            <hsl:FXFlip.Front>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    19
                <Grid x:Name="frontgrid" >
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    20
                    <View:ConsultationView x:Name="ConsultationViewElement" DataContext="{Binding ViewModelConsultationView}" Margin="0,40,0,-56" d:LayoutOverrides="Height" HorizontalAlignment="Right"/>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    21
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    22
                </Grid>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    23
            </hsl:FXFlip.Front>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    24
            <hsl:FXFlip.Back>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    25
                <Grid x:Name="backgrid" >
17
0e4e63f6f567 Update ProductinoView and Components
Matthieu Totet
parents: 12
diff changeset
    26
                    <View:ProductionView x:Name="ProductionViewElement" DataContext="{Binding ViewModelProductionView}"></View:ProductionView>
12
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    27
                </Grid>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    28
            </hsl:FXFlip.Back>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    29
        </hsl:FXFlip>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    30
    </Grid>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    31
</UserControl>
513caf1637bf Create MVVM Structure for the Main
Matthieu Totet
parents:
diff changeset
    32