87 lines
3.9 KiB
XML
87 lines
3.9 KiB
XML
<Window x:Class="ProjetTheAlone.View.DashBoard"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:ProjetTheAlone.View"
|
|
xmlns:control="clr-namespace:ProjetTheAlone.UserControlDIY"
|
|
xmlns:diag="clr-namespace:System.Diagnostics;assembly=WindowsBase"
|
|
xmlns:classes="clr-namespace:ProjetTheAlone.Classes"
|
|
mc:Ignorable="d"
|
|
Title="DashBoard" Height="495.378" Width="1014.286" xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
|
TextElement.FontWeight="Regular"
|
|
TextElement.FontSize="13"
|
|
TextOptions.TextFormattingMode="Ideal"
|
|
TextOptions.TextRenderingMode="Auto"
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
FontFamily="{DynamicResource MaterialDesignFont}"
|
|
Name="wnd">
|
|
<Window.Resources>
|
|
<local:DebugDummyConverter x:Key="DebugDummyConverter" />
|
|
</Window.Resources>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="5*" />
|
|
<RowDefinition Height="5*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<DockPanel>
|
|
<ItemsControl x:Name="RepasMatin">
|
|
<!-- Set the Template for each row to a TextBlock and another ItemsControl -->
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate DataType="classes:C_T_plat">
|
|
<control:Plat ></control:Plat>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
<!-- <ListView x:Name="RepasMatin" VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate DataType="classes:C_T_plat">
|
|
<control:Plat></control:Plat>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>-->
|
|
</DockPanel>
|
|
<!---->
|
|
|
|
|
|
<materialDesign:PackIcon Kind="Build" Grid.Column="2" HorizontalAlignment="Right" Cursor="Hand"/>
|
|
|
|
</Grid>
|
|
<Grid Grid.Row="1" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<control:EventPasse x:Name="EventPasse1" Classement="{Binding Classement}"></control:EventPasse>
|
|
<control:EventPasse x:Name="EventPasse2" Classement="{Binding Classement}" Grid.Column="1"></control:EventPasse>
|
|
<control:EventFutur Grid.Column="2"></control:EventFutur>
|
|
<control:EventFutur Grid.Column="3"></control:EventFutur>
|
|
</Grid>
|
|
|
|
|
|
<Grid Grid.Row="2" Visibility="Visible">
|
|
<Border>
|
|
<Border.Background>
|
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
<GradientStop Color="OrangeRed" Offset="0" />
|
|
<GradientStop Color="DarkOrange" Offset="1" />
|
|
</LinearGradientBrush>
|
|
</Border.Background>
|
|
</Border>
|
|
<TextBlock Grid.Column="1" Style="{StaticResource MaterialDesignTitleTextBlock}" VerticalAlignment="Center" Height="Auto" Text="Absentéisme ou alerte" />
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</Window>
|