diff --git a/CampusAppWP8/CampusAppWP8/App.xaml b/CampusAppWP8/CampusAppWP8/App.xaml
index 1d6fd99b..443e964d 100644
--- a/CampusAppWP8/CampusAppWP8/App.xaml
+++ b/CampusAppWP8/CampusAppWP8/App.xaml
@@ -13,6 +13,7 @@
+
diff --git a/CampusAppWP8/CampusAppWP8/App.xaml.cs b/CampusAppWP8/CampusAppWP8/App.xaml.cs
index 5bb47375..b5ddfcdb 100644
--- a/CampusAppWP8/CampusAppWP8/App.xaml.cs
+++ b/CampusAppWP8/CampusAppWP8/App.xaml.cs
@@ -10,6 +10,7 @@ using System.IO.IsolatedStorage;
using System.Threading;
using System.Windows;
using System.Windows.Markup;
+using System.Windows.Media;
using System.Windows.Navigation;
@@ -157,6 +158,19 @@ namespace CampusAppWP8
Settings.AppSetting.InitApp = false;
}
+ Color appColor = ((SolidColorBrush)App.Current.Resources["PhoneAccentBrush"]).Color;
+ if (!Settings.AppSetting.DisplaySetting.PhoneAccentColor.Equals(appColor))
+ {
+ if (Settings.AppSetting.DisplaySetting.AppAccentColor.Equals(Settings.AppSetting.DisplaySetting.PhoneAccentColor))
+ {
+ Settings.AppSetting.DisplaySetting.AppAccentColor = appColor;
+ }
+ Settings.AppSetting.DisplaySetting.PhoneAccentColor = appColor;
+ }
+
+ appColor = Settings.AppSetting.DisplaySetting.AppAccentColor;
+ Utilities.SwitchAccentColor(appColor);
+
this.UserSettingsLoaded();
Settings.AppSetting.NetworkSetting.UniNetwork = Utilities.IsUniNetworkAvailable();
diff --git a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj
index 0fbc7b96..201e7c1d 100644
--- a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj
+++ b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj
@@ -134,6 +134,7 @@
+
@@ -144,6 +145,8 @@
+
+
FunctionSettingPage.xaml
@@ -542,6 +545,10 @@
MSBuild:Compile
Designer
+
+ MSBuild:Compile
+ Designer
+
MSBuild:Compile
Designer
diff --git a/CampusAppWP8/CampusAppWP8/Model/Setting/AppSettings.cs b/CampusAppWP8/CampusAppWP8/Model/Setting/AppSettings.cs
index e4f482f8..1224cdcb 100644
--- a/CampusAppWP8/CampusAppWP8/Model/Setting/AppSettings.cs
+++ b/CampusAppWP8/CampusAppWP8/Model/Setting/AppSettings.cs
@@ -26,10 +26,30 @@ namespace CampusAppWP8.Model.Setting
/// The locating setting.
private static LocatingSetting locatingSetting = new LocatingSetting();
+ private static DisplaySetting displaySetting = new DisplaySetting();
+
#endregion
#region Property
+ /// Gets or sets the display setting.
+ /// The display setting.
+ public DisplaySetting DisplaySetting
+ {
+ get
+ {
+ return AppSettings.displaySetting;
+ }
+
+ set
+ {
+ if (AppSettings.displaySetting != value)
+ {
+ AppSettings.displaySetting = value;
+ }
+ }
+ }
+
/// Gets or sets the locating setting.
/// The locating setting.
public LocatingSetting LocatingSetting
@@ -150,6 +170,7 @@ namespace CampusAppWP8.Model.Setting
this.FunctionSettings.SetSettingToDefault();
this.NetworkSetting.SetSettingToDefault();
this.LocatingSetting.SetSettingToDefault();
+ this.DisplaySetting.SetSettingToDefault();
}
#endregion
}
diff --git a/CampusAppWP8/CampusAppWP8/Model/Setting/DisplaySetting.cs b/CampusAppWP8/CampusAppWP8/Model/Setting/DisplaySetting.cs
new file mode 100644
index 00000000..3416267f
--- /dev/null
+++ b/CampusAppWP8/CampusAppWP8/Model/Setting/DisplaySetting.cs
@@ -0,0 +1,64 @@
+using CampusAppWP8.Resources;
+//-----------------------------------------------------------------------
+//
+// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
+//
+// Stubbfel
+// 26.11.2013
+// Implements the display setting class
+//-----------------------------------------------------------------------
+using System.Windows.Media;
+
+namespace CampusAppWP8.Model.Setting
+{
+ /// A display setting.
+ /// Stubbfel, 26.11.2013.
+ ///
+ public class DisplaySetting : ISetting
+ {
+ #region property
+
+ /// Gets or sets the color of the application accent.
+ /// The color of the application accent.
+ public Color AppAccentColor
+ {
+ get
+ {
+ return App.LoadFromAppState(Constants.Setting_AppAccentColor);
+ }
+
+ set
+ {
+ App.SaveToAppState(Constants.Setting_AppAccentColor, value);
+ }
+ }
+
+ /// Gets or sets the color of the phone accent.
+ /// The color of the phone accent.
+ public Color PhoneAccentColor
+ {
+ get
+ {
+ return App.LoadFromAppState(Constants.Setting_PhoneAccentColor);
+ }
+
+ set
+ {
+ App.SaveToAppState(Constants.Setting_PhoneAccentColor, value);
+ }
+ }
+
+ #endregion
+
+ #region method
+
+ /// Sets setting to default.
+ /// Stubbfel, 25.11.2013.
+ ///
+ public void SetSettingToDefault()
+ {
+ this.AppAccentColor = this.PhoneAccentColor;
+ }
+ #endregion
+ }
+}
diff --git a/CampusAppWP8/CampusAppWP8/Model/Utility/AppAccentColorListPickerItemListModel.cs b/CampusAppWP8/CampusAppWP8/Model/Utility/AppAccentColorListPickerItemListModel.cs
new file mode 100644
index 00000000..45d8364c
--- /dev/null
+++ b/CampusAppWP8/CampusAppWP8/Model/Utility/AppAccentColorListPickerItemListModel.cs
@@ -0,0 +1,91 @@
+//-----------------------------------------------------------------------
+//
+// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
+//
+// Stubbfel
+// 26.11.2013
+// Implements the application accent color list picker item list model class
+//-----------------------------------------------------------------------
+namespace CampusAppWP8.Model.Utility
+{
+ using System.Windows.Media;
+ using CampusAppWP8.Resources;
+
+ /// A data Model for the application accent color list picker item list.
+ /// Stubbfel, 26.11.2013.
+ ///
+ public class AppAccentColorListPickerItemListModel : CampusAppWPortalLib8.Model.Utility.ListPickerItemListTemplateModel
+ {
+ #region member
+
+ /// The faculty 1 color.
+ private static readonly SolidColorBrush Faculty1Color = (SolidColorBrush)App.Current.Resources[Constants.Brush_Faculty1];
+
+ /// The faculty 2 color.
+ private static readonly SolidColorBrush Faculty2Color = (SolidColorBrush)App.Current.Resources[Constants.Brush_Faculty2];
+
+ /// The faculty 3 color.
+ private static readonly SolidColorBrush Faculty3Color = (SolidColorBrush)App.Current.Resources[Constants.Brush_Faculty3];
+
+ /// The faculty 4 color.
+ private static readonly SolidColorBrush Faculty4Color = (SolidColorBrush)App.Current.Resources[Constants.Brush_Faculty4];
+
+ /// The faculty 5 color.
+ private static readonly SolidColorBrush Faculty5Color = (SolidColorBrush)App.Current.Resources[Constants.Brush_Faculty5];
+
+ /// The faculty.
+ private readonly string faculty = CampusAppWPortalLib8.Resources.AppResources.Faculty;
+
+ #endregion
+
+ #region Constructor
+
+ ///
+ /// Initializes a new instance of the AppAccentColorListPickerItemListModel class.
+ ///
+ /// Stubbfel, 26.11.2013.
+ public AppAccentColorListPickerItemListModel()
+ : base()
+ {
+ this.LoadList();
+ }
+
+ #endregion
+
+ #region Method
+
+ /// Gets index or default.
+ /// Stubbfel, 27.11.2013.
+ /// The value.
+ /// The index or default.
+ public override int GetIndexOrDefault(SolidColorBrush value)
+ {
+ int index = 0;
+ foreach (ColorListPickerItemModel brush in this.List)
+ {
+ if (brush.Value.Color.Equals(value.Color))
+ {
+ break;
+ }
+
+ index++;
+ }
+
+ return index;
+ }
+
+ /// Loads the list.
+ /// Stubbfel, 26.11.2013.
+ protected override void LoadList()
+ {
+ this.AddItem(new ColorListPickerItemModel(new SolidColorBrush(Settings.AppSetting.DisplaySetting.PhoneAccentColor), CampusAppWP8.Resources.AppResources.AccentColor));
+ this.AddItem(new ColorListPickerItemModel(AppAccentColorListPickerItemListModel.Faculty1Color, this.faculty + " 1"));
+ this.AddItem(new ColorListPickerItemModel(AppAccentColorListPickerItemListModel.Faculty2Color, this.faculty + " 2"));
+ this.AddItem(new ColorListPickerItemModel(AppAccentColorListPickerItemListModel.Faculty3Color, this.faculty + " 3"));
+ this.AddItem(new ColorListPickerItemModel(AppAccentColorListPickerItemListModel.Faculty4Color, this.faculty + " 4"));
+ this.AddItem(new ColorListPickerItemModel(AppAccentColorListPickerItemListModel.Faculty5Color, this.faculty + " 5"));
+ }
+
+ #endregion
+ }
+}
diff --git a/CampusAppWP8/CampusAppWP8/Model/Utility/ColorListPickerItemModel.cs b/CampusAppWP8/CampusAppWP8/Model/Utility/ColorListPickerItemModel.cs
new file mode 100644
index 00000000..21e6587b
--- /dev/null
+++ b/CampusAppWP8/CampusAppWP8/Model/Utility/ColorListPickerItemModel.cs
@@ -0,0 +1,34 @@
+//-----------------------------------------------------------------------
+//
+// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
+//
+// Stubbfel
+// 26.11.2013
+// Implements the color list picker item model class
+//-----------------------------------------------------------------------
+namespace CampusAppWP8.Model.Utility
+{
+ using System.Windows.Media;
+
+ /// A data Model for the color list picker item.
+ /// Stubbfel, 26.11.2013.
+ ///
+ public class ColorListPickerItemModel : CampusAppWPortalLib8.Model.Utility.ListPickerItemTemplateModel
+ {
+ /// Initializes a new instance of the ColorListPickerItemModel class.
+ /// Stubbfel, 26.11.2013.
+ public ColorListPickerItemModel()
+ : base()
+ {
+ }
+
+ /// Initializes a new instance of the ColorListPickerItemModel class.
+ /// Stubbfel, 26.11.2013.
+ /// The value.
+ /// The text.
+ public ColorListPickerItemModel(SolidColorBrush value, string text)
+ : base(value, text)
+ {
+ }
+ }
+}
diff --git a/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml b/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml
index 6762f89b..91ccc82c 100644
--- a/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml
+++ b/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml
@@ -26,7 +26,7 @@
-
+
@@ -69,7 +69,29 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Class for the AppSettingPage.
/// Stubbfel, 15.10.2013.
///
+ ///
public partial class AppSettingPage : PhoneApplicationPage, IRefreshingPage
{
+ #region member
+
+ /// List of colors of the application accents.
+ private readonly AppAccentColorListPickerItemListModel appAccentColors = new AppAccentColorListPickerItemListModel();
+
+ #endregion
+
#region Constructor
/// Initializes a new instance of the class.
@@ -25,6 +36,7 @@ namespace CampusAppWP8.Pages.Setting
public AppSettingPage()
{
this.InitializeComponent();
+ this.AccentColorPicker.ItemsSource = this.appAccentColors.List;
this.LoadSettings();
}
@@ -44,6 +56,7 @@ namespace CampusAppWP8.Pages.Setting
#endregion
#region protected
+
/// Override the OnNavigatedTo method.
/// Stubbfel, 15.10.2013.
///
@@ -78,12 +91,14 @@ namespace CampusAppWP8.Pages.Setting
#endregion
#region private
+
/// Loads the settings.
/// Stubbfel, 25.11.2013.
private void LoadSettings()
{
this.GeoWatchToggle.IsChecked = Settings.AppSetting.LocatingSetting.GeoWatchEnable;
this.OnlyWiFiToggle.IsChecked = Settings.AppSetting.NetworkSetting.OnlyWifi;
+ this.AccentColorPicker.SelectedIndex = this.appAccentColors.GetIndexOrDefault(new SolidColorBrush(Settings.AppSetting.DisplaySetting.AppAccentColor));
}
/// Saves the settings.
@@ -104,6 +119,21 @@ namespace CampusAppWP8.Pages.Setting
this.LoadSettings();
}
+ /// Event handler. Called by AccentColorPicker for selection changed events.
+ /// Stubbfel, 26.11.2013.
+ /// Source of the event.
+ /// Selection changed event information.
+ private void AccentColorPicker_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
+ {
+ if (e.AddedItems.Count == 1 && e.RemovedItems.Count == 1)
+ {
+ int selectedIndex = this.AccentColorPicker.SelectedIndex;
+ Color newColor = this.appAccentColors.List[selectedIndex].Value.Color;
+ Utilities.SwitchAccentColor(newColor);
+ Settings.AppSetting.DisplaySetting.AppAccentColor = newColor;
+ }
+ }
+
#endregion
#endregion
diff --git a/CampusAppWP8/CampusAppWP8/Pages/Setting/Impressum.xaml b/CampusAppWP8/CampusAppWP8/Pages/Setting/Impressum.xaml
index cba5a15d..ad1ea792 100644
--- a/CampusAppWP8/CampusAppWP8/Pages/Setting/Impressum.xaml
+++ b/CampusAppWP8/CampusAppWP8/Pages/Setting/Impressum.xaml
@@ -29,10 +29,13 @@
+
- Name: BTU Campus-App
- Version: 1.0
- Kontakt:
+ Name
+ BTU CampusApp
+ Version
+ 1.1
+ Kontakt:
@@ -43,19 +46,56 @@
- Email:
+ Email:
- Website:
+ Website:
- Facebook:
+ Facebook:
-
+ Versionshinweise
+ Version 1.1:
+
+ - neue Funktionen:
+ - Stundenplan
+ - Wahl der Akzentfarbe
+ - Änderungen
+ - Überarbeitetes Layout der Startseite
+ - Überarbeitetes Einstellungsmenu
+ - Überarbeitet Raumübersicht
+
+ Version 1.0.0.1:
+
+ - Bugfixes:
+ - Beseitigung eines Fehler beim starten der App
+
+ Version 1.0:
+
+ Initaler Release
+ Funktionsübersicht:
+ - Vorlesungsverzeichnis (Vorlesungen, Übungen, Prüfungen etc.)
+ - Mensaplan
+ - Lehrstuhlübersicht
+ - Fachschaftenübersicht
+ - Prüfungsordnung
+ - Personsuche (Mitarbeiter)
+ - BTU Webmail
+ - Öffnungszeiten
+ - Verzeichnis mit nützlichen Links
+ - News und Events rund um den Campus
+ - mit Text-to-Speech−Funktion
+ - Campusplan :
+ - Gebäudesuchfunktion
+ - Lokalisierung mittles GPS oder BTU-Tag (QR-Codes, NFC-Tags)
+ - Ebenenpläne für das IKMZ und MZG
+
+
+
diff --git a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml
index 22532320..5e002178 100644
--- a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml
+++ b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml
@@ -1,4 +1,4 @@
-
@@ -27,8 +26,7 @@
-
-
+
@@ -121,14 +119,12 @@
-
-
-
+
@@ -237,7 +233,7 @@
-
+
@@ -273,7 +269,6 @@
-
-
@@ -313,18 +307,15 @@
-
+
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs
index 5cbdb32b..4a6a5eed 100644
--- a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs
+++ b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs
@@ -12,26 +12,23 @@ namespace CampusAppWP8.Pages
using System.Runtime.InteropServices.WindowsRuntime;
using System.Threading;
using System.Windows;
- using System.Windows.Controls;
using System.Windows.Navigation;
using CampusAppWP8.Feed.Utility;
using CampusAppWP8.File.Places;
using CampusAppWP8.Model.Setting;
- using CampusAppWP8.Pages.TimeTable;
using CampusAppWP8.Resources;
using CampusAppWP8.Utility;
using CampusAppWP8.Utility.Lui.MessageBoxes;
using CampusAppWP8.Utility.Lui.Page;
using CampusAppWP8.Utility.Lui.Tiles;
using CampusAppWP8.Utility.NDEF;
- using Microsoft.Phone.Controls;
- using Microsoft.Phone.Shell;
using Windows.Networking.Proximity;
+ using Microsoft.Phone.Controls;
/// Class for the StartPage.
/// Stubbfel, 15.10.2013.
///
- public partial class StartPage : PortraitLandscapePage
+ public partial class StartPage : PhoneApplicationPage
{
#region Member
@@ -75,7 +72,7 @@ namespace CampusAppWP8.Pages
#region protected
- /// Methods overrides the OnNavigatedTo-Method.
+ /// Methods overrides the OnNavigatedTo-Method.
/// Stubbfel, 15.10.2013.
///
protected override void OnNavigatedTo(NavigationEventArgs e)
@@ -84,7 +81,7 @@ namespace CampusAppWP8.Pages
if (device != null)
{
this.ndefId = this.device.SubscribeForMessage(Constants.NCFMessageType_NDEF, this.NDEFHandler);
- }
+ }
}
/// Methods overrides the OnNavigatedFrom-Method.
@@ -123,7 +120,7 @@ namespace CampusAppWP8.Pages
/// Stubbfel, 15.10.2013.
/// Caller of the function.
/// some EventArgs.
- private void NFCButton_Click(object sender,RoutedEventArgs e)
+ private void NFCButton_Click(object sender, RoutedEventArgs e)
{
MessageBoxes.ShowMainModelInfoMessageBox(AppResources.ScarNfc_Search);
}
diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs
index 034721f2..55e6f33d 100644
--- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs
+++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs
@@ -60,6 +60,24 @@ namespace CampusAppWP8.Resources {
}
}
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Akzentfarbe ähnelt.
+ ///
+ public static string AccentColor {
+ get {
+ return ResourceManager.GetString("AccentColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Akzentfarbe-Auswahl ähnelt.
+ ///
+ public static string AccentColorPicker {
+ get {
+ return ResourceManager.GetString("AccentColorPicker", resourceCulture);
+ }
+ }
+
///
/// Sucht eine lokalisierte Zeichenfolge, die Hinzufügen ähnelt.
///
@@ -1285,7 +1303,7 @@ namespace CampusAppWP8.Resources {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Über BTU Campus-App ähnelt.
+ /// Sucht eine lokalisierte Zeichenfolge, die Über BTU CampusApp ähnelt.
///
public static string Setting_ImpressumTitle {
get {
diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx
index 711c1ded..f3d9f5fd 100644
--- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx
+++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx
@@ -570,7 +570,7 @@
BTU-Tag-Standardfunktion
- Über BTU Campus-App
+ Über BTU CampusApp
Der eingescannte Tag ist kein BTU-Tag
@@ -662,4 +662,10 @@
Mensa
+
+ Akzentfarbe
+
+
+ Akzentfarbe-Auswahl
+
\ No newline at end of file
diff --git a/CampusAppWP8/CampusAppWP8/Resources/Constants.resx b/CampusAppWP8/CampusAppWP8/Resources/Constants.resx
index 7d33c11c..efcc4d54 100644
--- a/CampusAppWP8/CampusAppWP8/Resources/Constants.resx
+++ b/CampusAppWP8/CampusAppWP8/Resources/Constants.resx
@@ -680,5 +680,46 @@
paramday
+
+ AppAccentColor
+
+
+ PhoneAccentColor
+
+
+ FacultyBrush1
+
+
+ FacultyBrush2
+
+
+ FacultyBrush3
+
+
+ FacultyBrush4
+
+
+ FacultyBrush5
+
+
+ PhoneAccentBrush
+
+
+ FacultyColor1
+
+
+ FacultyColor2
+
+
+ FacultyColor3
+
+
+ FacultyColor4
+
+
+ FacultyColor5
+
+
+ PhoneAccentColor
\ No newline at end of file
diff --git a/CampusAppWP8/CampusAppWP8/Resources/Constants1.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/Constants1.Designer.cs
index c8de4712..be3cb10f 100644
--- a/CampusAppWP8/CampusAppWP8/Resources/Constants1.Designer.cs
+++ b/CampusAppWP8/CampusAppWP8/Resources/Constants1.Designer.cs
@@ -204,6 +204,60 @@ namespace CampusAppWP8.Resources {
}
}
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyBrush1 ähnelt.
+ ///
+ public static string Brush_Faculty1 {
+ get {
+ return ResourceManager.GetString("Brush_Faculty1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyBrush2 ähnelt.
+ ///
+ public static string Brush_Faculty2 {
+ get {
+ return ResourceManager.GetString("Brush_Faculty2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyBrush3 ähnelt.
+ ///
+ public static string Brush_Faculty3 {
+ get {
+ return ResourceManager.GetString("Brush_Faculty3", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyBrush4 ähnelt.
+ ///
+ public static string Brush_Faculty4 {
+ get {
+ return ResourceManager.GetString("Brush_Faculty4", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyBrush5 ähnelt.
+ ///
+ public static string Brush_Faculty5 {
+ get {
+ return ResourceManager.GetString("Brush_Faculty5", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die PhoneAccentBrush ähnelt.
+ ///
+ public static string Brush_PhoneAccent {
+ get {
+ return ResourceManager.GetString("Brush_PhoneAccent", resourceCulture);
+ }
+ }
+
///
/// Sucht eine lokalisierte Zeichenfolge, die BTU-CampusApp ähnelt.
///
@@ -222,6 +276,60 @@ namespace CampusAppWP8.Resources {
}
}
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyColor1 ähnelt.
+ ///
+ public static string Color_Faculty1 {
+ get {
+ return ResourceManager.GetString("Color_Faculty1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyColor2 ähnelt.
+ ///
+ public static string Color_Faculty2 {
+ get {
+ return ResourceManager.GetString("Color_Faculty2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyColor3 ähnelt.
+ ///
+ public static string Color_Faculty3 {
+ get {
+ return ResourceManager.GetString("Color_Faculty3", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyColor4 ähnelt.
+ ///
+ public static string Color_Faculty4 {
+ get {
+ return ResourceManager.GetString("Color_Faculty4", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die FacultyColor5 ähnelt.
+ ///
+ public static string Color_Faculty5 {
+ get {
+ return ResourceManager.GetString("Color_Faculty5", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die PhoneAccentColor ähnelt.
+ ///
+ public static string Color_PhoneAccent {
+ get {
+ return ResourceManager.GetString("Color_PhoneAccent", resourceCulture);
+ }
+ }
+
///
/// Sucht eine lokalisierte Zeichenfolge, die 8 ähnelt.
///
@@ -1392,6 +1500,15 @@ namespace CampusAppWP8.Resources {
}
}
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die AppAccentColor ähnelt.
+ ///
+ public static string Setting_AppAccentColor {
+ get {
+ return ResourceManager.GetString("Setting_AppAccentColor", resourceCulture);
+ }
+ }
+
///
/// Sucht eine lokalisierte Zeichenfolge, die AppSetting ähnelt.
///
@@ -1491,6 +1608,15 @@ namespace CampusAppWP8.Resources {
}
}
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die PhoneAccentColor ähnelt.
+ ///
+ public static string Setting_PhoneAccentColor {
+ get {
+ return ResourceManager.GetString("Setting_PhoneAccentColor", resourceCulture);
+ }
+ }
+
///
/// Sucht eine lokalisierte Zeichenfolge, die UserSetting ähnelt.
///
diff --git a/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml b/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml
index c6db84ac..73e98eca 100644
--- a/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml
+++ b/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml
@@ -22,8 +22,8 @@
-
-
+
+