|
0
|
1 |
<UserControl
|
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
6 |
mc:Ignorable="d"
|
|
|
7 |
x:Class="Iri.Modernisation.Controls.View.NavigationBar"
|
|
|
8 |
xmlns:View="clr-namespace:Iri.Modernisation.Controls.View"
|
|
|
9 |
Height="736" Width="256">
|
|
|
10 |
<StackPanel x:Name="LayoutRoot">
|
|
|
11 |
<View:ConsultMenu x:Name="ConsultMenuElement" DataContext="{Binding ConsultMenuViewModel}"/>
|
|
|
12 |
<View:ReferencesChutier x:Name="ReferencesChutierElement" DataContext="{Binding ReferencesChutierViewModel}"/>
|
|
|
13 |
<View:PersonnalChutier x:Name="PersonnalChutierElement" DataContext="{Binding PersonnalChutierViewModel}"/>
|
|
|
14 |
<View:ProductionMenu x:Name="ProductionMenuElement" />
|
|
|
15 |
</StackPanel>
|
|
|
16 |
|
|
|
17 |
</UserControl> |