WeeXnesSuite/WeeXnes/Views/ProfileView/LoginError.xaml.cs
2023-11-21 21:02:39 +01:00

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));
}
}
}