-
Notifications
You must be signed in to change notification settings - Fork 0
/
view_report.xaml
58 lines (48 loc) · 2.85 KB
/
view_report.xaml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Page x:Class="Lafarge_WPF.Pages.view_report"
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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:local="clr-namespace:Lafarge_WPF.Pages"
mc:Ignorable="d"
d:DesignHeight="{x:Static SystemParameters.PrimaryScreenHeight}"
d:DesignWidth="{x:Static SystemParameters.PrimaryScreenWidth}"
Title="view_report"
ShowsNavigationUI="False">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" Text="Weekly Report" FontSize="50" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock.Effect>
<DropShadowEffect Color="Gray" BlurRadius="15" Direction="-90" RenderingBias="Quality" ShadowDepth="4" Opacity="0.30" />
</TextBlock.Effect>
</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" Text="Monthly Report" FontSize="50" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock.Effect>
<DropShadowEffect Color="Gray" BlurRadius="15" Direction="-90" RenderingBias="Quality" ShadowDepth="4" Opacity="0.30" />
</TextBlock.Effect>
</TextBlock>
<Button x:Name="Download_Report_Weekly" FontSize="21" Grid.Row="1" Width="200" Height="100" Background="#00955E" Style="{StaticResource MaterialDesignRaisedButton}"
materialDesign:ButtonAssist.CornerRadius="50" BorderThickness="0" BorderBrush="#00955E"
Click="Weekly_report" Content="View" >
<Button.Effect>
<DropShadowEffect Color="Gray" BlurRadius="20" Direction="-90" RenderingBias="Quality" ShadowDepth="3" Opacity="0.50"/>
</Button.Effect>
</Button>
<Button x:Name="Download_Report_Monthly" FontSize="21" Grid.Column="1" Grid.Row="1" Width="200" Height="100" Background="#00955E" Style="{StaticResource MaterialDesignRaisedButton}"
materialDesign:ButtonAssist.CornerRadius="50" BorderThickness="0" BorderBrush="#00955E"
Click="Monthly_report" Content="View" >
<Button.Effect>
<DropShadowEffect Color="Gray" BlurRadius="20" Direction="-90" RenderingBias="Quality" ShadowDepth="3" Opacity="0.50"/>
</Button.Effect>
</Button>
</Grid>
</Page>