-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventDetailsPage.xaml
57 lines (49 loc) · 2.81 KB
/
EventDetailsPage.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
<Page
x:Class="CosmosStudentPlanner.EventDetailsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:CosmosStudentPlanner"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Button x:Name="NavigateBack_Button" Click="NavigateBack_Click" VerticalAlignment="Top" HorizontalAlignment="Left"
Style="{StaticResource NavigationBackButtonNormalStyle}"/>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="4*"/>
<ColumnDefinition Width="4*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel x:Name="EventDetailsPanel"
Margin="0,0,0,0"
Grid.Column="1"
Grid.Row="0"
Height="1000"
Width="750"
HorizontalAlignment="Right"
VerticalAlignment="Stretch">
<TextBlock x:Name="HeaderTitle" Text="Event Details" HorizontalAlignment="Right" Margin="0,24,0,0" Style="{StaticResource HeaderTextBlockStyle}"/>
<TextBlock x:Name="EventTitle" Text="Event Title" HorizontalAlignment="Right" Margin="0,24,0,0" Style="{StaticResource SubheaderTextBlockStyle}"/>
<TextBlock x:Name="EventDescription" Text="Event Description" HorizontalAlignment="Right" Margin="0,24,0,0" Style="{StaticResource SubtitleTextBlockStyle}"/>
<TextBlock x:Name="EventType" Text="Event Type" HorizontalAlignment="Right" Margin="0,24,0,0" Style="{StaticResource SubtitleTextBlockStyle}"/>
<TextBlock x:Name="EventDate" Text="Event Date" HorizontalAlignment="Right" Margin="0,24,0,0" Style="{StaticResource SubtitleTextBlockStyle}"/>
<TextBlock x:Name="EventTime" Text="Event Time" HorizontalAlignment="Right" Margin="0,24,0,0" Style="{StaticResource SubtitleTextBlockStyle}"/>
</StackPanel>
<Grid>
<StackPanel Name="EventInkImagePanel"
Margin="0,0,0,0"
Grid.Column="1"
Grid.Row="0"
Height="1000"
Width="750"
HorizontalAlignment="Left">
<Image x:Name="EventInkImage" Width="650" Height="700" Stretch="None"/>
</StackPanel>
</Grid>
</Grid>
</Grid>
</Page>