bitwarden-android/src/App/Pages/Accounts/EnvironmentPage.xaml.cs
2019-05-31 12:13:14 -04:00

32 lines
961 B
C#

using System;
using Xamarin.Forms;
namespace Bit.App.Pages
{
public partial class EnvironmentPage : BaseContentPage
{
private EnvironmentPageViewModel _vm;
public EnvironmentPage()
{
InitializeComponent();
_vm = BindingContext as EnvironmentPageViewModel;
_vm.Page = this;
_webVaultEntry.ReturnType = ReturnType.Next;
_webVaultEntry.ReturnCommand = new Command(() => _apiEntry.Focus());
_apiEntry.ReturnType = ReturnType.Next;
_apiEntry.ReturnCommand = new Command(() => _identityEntry.Focus());
_identityEntry.ReturnType = ReturnType.Next;
_identityEntry.ReturnCommand = new Command(() => _iconsEntry.Focus());
}
private async void Submit_Clicked(object sender, EventArgs e)
{
if(DoOnce())
{
await _vm.SubmitAsync();
}
}
}
}