Compare commits
2 Commits
initgitflo
...
vs#30
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84266dfb59 | ||
|
|
9c973b2b8f |
@@ -1,5 +1,5 @@
|
|||||||
<phone:PhoneApplicationPage
|
<phone:PhoneApplicationPage
|
||||||
x:Class="CampusAppWP8.Pages.Webmail.Webmail"
|
x:Class="CampusAppWP8.Pages.Webmail.WebmailPage"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
|
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
|
||||||
|
|||||||
@@ -1,20 +1,36 @@
|
|||||||
using Microsoft.Phone.Controls;
|
//-----------------------------------------------------------------------
|
||||||
using System;
|
// <copyright file="WebmailPage.xaml.cs" company="BTU/IIT">
|
||||||
|
// Company copyright tag.
|
||||||
|
// </copyright>
|
||||||
|
// <author>stubbfel</author>
|
||||||
|
// <sience>12.06.2013</sience>
|
||||||
|
//----------------------------------------------------------------------
|
||||||
namespace CampusAppWP8.Pages.Webmail
|
namespace CampusAppWP8.Pages.Webmail
|
||||||
{
|
{
|
||||||
public partial class Webmail : PhoneApplicationPage
|
using System;
|
||||||
|
using CampusAppWP8.Resources;
|
||||||
|
using Microsoft.Phone.Controls;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Class for the WebmailPage
|
||||||
|
/// </summary>
|
||||||
|
public partial class WebmailPage : PhoneApplicationPage
|
||||||
{
|
{
|
||||||
public Webmail()
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="WebmailPage" /> class.
|
||||||
|
/// </summary>
|
||||||
|
public WebmailPage()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
this.InitializeComponent();
|
||||||
loadWebmailPage();
|
this.LoadWebmailPage();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void loadWebmailPage()
|
/// <summary>
|
||||||
|
/// Method load WebmailPage
|
||||||
|
/// </summary>
|
||||||
|
private void LoadWebmailPage()
|
||||||
{
|
{
|
||||||
this.WebmailBrowser.Navigate(new Uri("https://webmail.tu-cottbus.de", UriKind.Absolute));
|
this.WebmailBrowser.Navigate(new Uri(Constants.UrlWebMailAddr, UriKind.Absolute));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -132,6 +132,15 @@ namespace CampusAppWP8.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sucht eine lokalisierte Zeichenfolge, die https://webmail.tu-cottbus.de ähnelt.
|
||||||
|
/// </summary>
|
||||||
|
internal static string UrlWebMailAddr {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("UrlWebMailAddr", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sucht eine lokalisierte Zeichenfolge, die root ähnelt.
|
/// Sucht eine lokalisierte Zeichenfolge, die root ähnelt.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -144,4 +144,7 @@
|
|||||||
<data name="XMLRootElementName" xml:space="preserve">
|
<data name="XMLRootElementName" xml:space="preserve">
|
||||||
<value>root</value>
|
<value>root</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="UrlWebMailAddr" xml:space="preserve">
|
||||||
|
<value>https://webmail.tu-cottbus.de</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
Reference in New Issue
Block a user