2022-12-02 13:16:43 +00:00
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Interactivity;
|
|
|
|
using FluentAvalonia.UI.Controls;
|
|
|
|
using FluentAvalonia.UI.Navigation;
|
2022-12-23 02:44:23 +00:00
|
|
|
using Ryujinx.Ava.UI.Controls;
|
2022-12-02 13:16:43 +00:00
|
|
|
|
2022-12-23 02:44:23 +00:00
|
|
|
namespace Ryujinx.Ava.UI.Views.User
|
2022-12-02 13:16:43 +00:00
|
|
|
{
|
|
|
|
public partial class UserRecoverer : UserControl
|
|
|
|
{
|
|
|
|
private NavigationDialogHost _parent;
|
|
|
|
|
|
|
|
public UserRecoverer()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
AddHandler(Frame.NavigatedToEvent, (s, e) =>
|
|
|
|
{
|
|
|
|
NavigatedTo(e);
|
|
|
|
}, RoutingStrategies.Direct);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void NavigatedTo(NavigationEventArgs arg)
|
|
|
|
{
|
|
|
|
if (Program.PreviewerDetached)
|
|
|
|
{
|
|
|
|
switch (arg.NavigationMode)
|
|
|
|
{
|
|
|
|
case NavigationMode.New:
|
2022-12-23 02:44:23 +00:00
|
|
|
var parent = (NavigationDialogHost)arg.Parameter;
|
2022-12-02 13:16:43 +00:00
|
|
|
|
2022-12-23 02:44:23 +00:00
|
|
|
_parent = parent;
|
2022-12-02 13:16:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-23 02:44:23 +00:00
|
|
|
|
|
|
|
private void GoBack(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
_parent?.GoBack();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void Recover(object sender, RoutedEventArgs e)
|
|
|
|
{
|
|
|
|
_parent?.RecoverLostAccounts();
|
|
|
|
}
|
2022-12-02 13:16:43 +00:00
|
|
|
}
|
2022-12-23 02:44:23 +00:00
|
|
|
}
|