You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.8 KiB
64 lines
2.8 KiB
<UserControl x:Class="vues.AccueilUC"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:vues"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<!--
|
|
Grid; trois colonnes, trois lignes
|
|
permet de placer les éléments plus facilement
|
|
-->
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!--
|
|
coté gauche de la grid
|
|
-->
|
|
<!--stackpanel qui regroupe un textblock et une listbox pour l'historique-->
|
|
<StackPanel Grid.Row="2" Grid.RowSpan="2" Margin="10,0">
|
|
<TextBlock TextAlignment="Center" VerticalAlignment="Bottom">Historique</TextBlock>
|
|
<ListBox Grid.Row="1" x:Name="ListBoxHistorique" MinWidth="20" Padding="4" />
|
|
</StackPanel>
|
|
|
|
<!--
|
|
centre de la grid
|
|
-->
|
|
<!-- tritre + trait separateur -->
|
|
<Border Grid.Row="0" Grid.Column="1" BorderBrush="LightGreen" BorderThickness="0,0,0,3"
|
|
VerticalAlignment="Center" Padding="0,0,0,8">
|
|
<TextBlock HorizontalAlignment="Center"
|
|
Text="Nom de l'application" FontSize="25"/>
|
|
</Border>
|
|
|
|
<!--textbox qui sert de barre de recherche + texblock pour la description de l'application-->
|
|
<TextBox Grid.Row="1" Grid.Column="1" VerticalAlignment="Center"/>
|
|
<TextBlock Grid.Row="2" Grid.Column="1" x:Name="DescriptionDeLAccueil"/>
|
|
|
|
<!--
|
|
coté droit de la grid
|
|
-->
|
|
<!--bouton de validation pour la recherche-->
|
|
<Button Grid.Row="1" Grid.Column="2" Margin="2" HorizontalAlignment="Left" VerticalAlignment="Center"
|
|
Width="27" Height="18" Background="Transparent" BorderThickness="0">
|
|
<Image Source="recherchegris.png"/>
|
|
</Button>
|
|
|
|
<!--bouton pour acceder au mode administateur-->
|
|
<Button Grid.Column="2" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
Padding="16,4" FontWeight="Light" FontFamily="Arial"
|
|
Background="LightGray" BorderBrush="LightGray" Content="Mode Administrateur"/>
|
|
</Grid>
|
|
|
|
</UserControl>
|