1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| <UserControl xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"
x:Class="test_appli.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:uriMapper="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignHeight="900" d:DesignWidth="1200">
<Grid x:Name="LayoutRoot" Background="White">
<Border Height="135" HorizontalAlignment="Left" Margin="0,0,0,765" Name="border_haut" VerticalAlignment="Bottom" Width="1200" Background="#FFCE3A3A">
<Grid>
<ComboBox Height="30" Name="cbxContrat" Margin="49,52,902,53" />
<ComboBox Margin="512,51,0,0" Name="cbxAnnee" Height="31" VerticalAlignment="Top" HorizontalAlignment="Left" Width="168" IsEnabled="False" />
<Button Content="Valider" Height="71" HorizontalAlignment="Left" Margin="970,31,0,0" Name="btnvalider" VerticalAlignment="Top" Width="135" />
</Grid>
</Border>
<Border Height="715" HorizontalAlignment="Left" Margin="0,135,0,50" Name="border_host" Width="1200" Background="#FF549AB1" VerticalAlignment="Bottom" >
<navigation:Frame x:Name="ContentFrame"
Source="/graphep" NavigationFailed="contenu_NavigationFailed">
<navigation:Frame.UriMapper>
<uriMapper:UriMapper>
<uriMapper:UriMapping Uri="" MappedUri="/graphep"/>
<uriMapper:UriMapping Uri="/{pageName}" MappedUri="/Vue/{pageName}.xaml"/>
</uriMapper:UriMapper>
</navigation:Frame.UriMapper>
</navigation:Frame>
</Border>
<Border Height="50" HorizontalAlignment="Left" Margin="0,0,0,0" Name="border_bas" VerticalAlignment="Bottom" Width="1200" Background="#FF509D50">
<sdk:Label Height="50" HorizontalAlignment="Left" Margin="319,0,0,0" Name="lblposition" VerticalAlignment="Top" Width="673" />
</Border>
</Grid>
</UserControl> |
Partager