19 lines
No EOL
446 B
C#
19 lines
No EOL
446 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace WeeXnes.Views.ProfileView
|
|
{
|
|
public partial class LoginError : Page
|
|
{
|
|
public LoginError()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
NavigationService.Navigate(new Uri("/Views/ProfileView/LoginView.xaml",UriKind.Relative));
|
|
}
|
|
}
|
|
} |