diff --git a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj
index 547643e7..8513151d 100644
--- a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj
+++ b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj
@@ -97,6 +97,9 @@
MainPage.xaml
+
+ LecturePage.xaml
+
StartPage.xaml
@@ -122,6 +125,10 @@
MSBuild:Compile
Designer
+
+ Designer
+ MSBuild:Compile
+
Designer
MSBuild:Compile
diff --git a/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml b/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml
index f4b319d3..546c7228 100644
--- a/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml
+++ b/CampusAppWP8/CampusAppWP8/Properties/WMAppManifest.xml
@@ -13,7 +13,7 @@
-
+
diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs
index 12bdbff7..37da2af6 100644
--- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs
+++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs
@@ -123,6 +123,51 @@ namespace CampusAppWP8.Resources {
}
}
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Studiengang ähnelt.
+ ///
+ public static string LectureApp_Course {
+ get {
+ return ResourceManager.GetString("LectureApp_Course", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Abschluss ähnelt.
+ ///
+ public static string LectureApp_Degree {
+ get {
+ return ResourceManager.GetString("LectureApp_Degree", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Vorlesungsname ähnelt.
+ ///
+ public static string LectureApp_LectureName {
+ get {
+ return ResourceManager.GetString("LectureApp_LectureName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Semester ähnelt.
+ ///
+ public static string LectureApp_Semester {
+ get {
+ return ResourceManager.GetString("LectureApp_Semester", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Fachsemester ähnelt.
+ ///
+ public static string LectureApp_Term {
+ get {
+ return ResourceManager.GetString("LectureApp_Term", resourceCulture);
+ }
+ }
+
///
/// Sucht eine lokalisierte Zeichenfolge, die Vorlesung ähnelt.
///
diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx
index 694a70f8..2af3726e 100644
--- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx
+++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx
@@ -176,4 +176,19 @@
Stundenplan
+
+ Studiengang
+
+
+ Abschluss
+
+
+ Vorlesungsname
+
+
+ Semester
+
+
+ Fachsemester
+
\ No newline at end of file
diff --git a/CampusAppWP8/CampusAppWP8/pages/lecture/LecturePage.xaml b/CampusAppWP8/CampusAppWP8/pages/lecture/LecturePage.xaml
new file mode 100644
index 00000000..ef05c7e3
--- /dev/null
+++ b/CampusAppWP8/CampusAppWP8/pages/lecture/LecturePage.xaml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CampusAppWP8/CampusAppWP8/pages/lecture/LecturePage.xaml.cs b/CampusAppWP8/CampusAppWP8/pages/lecture/LecturePage.xaml.cs
new file mode 100644
index 00000000..d8a59d1f
--- /dev/null
+++ b/CampusAppWP8/CampusAppWP8/pages/lecture/LecturePage.xaml.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Navigation;
+using Microsoft.Phone.Controls;
+using Microsoft.Phone.Shell;
+
+namespace CampusAppWP8.pages.lecture
+{
+ public partial class Lecture : PhoneApplicationPage
+ {
+ public Lecture()
+ {
+ InitializeComponent();
+ }
+
+ private void PhoneApplicationPage_OrientationChanged(object sender, OrientationChangedEventArgs e)
+ {
+ }
+ }
+}
\ No newline at end of file