-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalysePage.xaml
24 lines (20 loc) · 1.04 KB
/
AnalysePage.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
<Page x:Class="FLAD.AnalysePage"
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:FLAD"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="AnalysePage">
<Page.Resources>
<ResourceDictionary Source="./ResourceDictionarys/StyleDictionary.xaml"/>
</Page.Resources>
<Grid>
<Border Background="#DF162A" Height="40" VerticalAlignment="Top" CornerRadius=" 3 3 0 0" Panel.ZIndex="1">
<TextBlock Text="Analyse" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="26" Foreground="#F2EFED"/>
</Border>
<Border x:Name="borderBack" Background="#F2EFED" CornerRadius="0 0 3 3" BorderBrush="#ED4556" BorderThickness="0" Margin="0 40 0 0" Panel.ZIndex="0">
</Border>
</Grid>
</Page>