2022-10-03 17:55:10 +02:00
|
|
|
using System.Globalization;
|
2022-08-30 15:42:25 +02:00
|
|
|
using Serilog;
|
2022-04-10 17:38:34 +02:00
|
|
|
using TINK.Model.Device;
|
2021-11-07 19:42:59 +01:00
|
|
|
using TINK.ViewModel.Login;
|
|
|
|
using Xamarin.Forms;
|
|
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
|
|
|
|
namespace TINK.View.CopriWebView
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
|
|
public partial class ManageAccountPage : ContentPage
|
|
|
|
{
|
|
|
|
public ManageAccountPage()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
2021-11-07 19:42:59 +01:00
|
|
|
|
2022-10-03 17:55:10 +02:00
|
|
|
ManageAccount.Navigating += WebViewHelper.SetBusyAndDisplayOrDownload;
|
2021-11-07 19:42:59 +01:00
|
|
|
|
2022-10-03 17:55:10 +02:00
|
|
|
ManageAccount.Navigated += (sender, eventArgs) => WebViewHelper.SetIdleAndHandleError(
|
|
|
|
sender,
|
|
|
|
eventArgs,
|
|
|
|
"<html><b>Kann persönliche Daten nicht anzeigen/ verwalten!</b><br>Verbindung mit Internet ok?</html>");
|
2021-11-07 19:42:59 +01:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
ManageAccount.BindingContext = new ManageAccountViewModel(
|
|
|
|
App.ModelRoot.ActiveUser.SessionCookie,
|
|
|
|
Model.TinkApp.MerchantId,
|
|
|
|
CultureInfo.CurrentUICulture.TwoLetterISOLanguageName,
|
|
|
|
App.ModelRoot.NextActiveUri.Host);
|
|
|
|
}
|
|
|
|
}
|
2022-10-03 17:55:10 +02:00
|
|
|
}
|