Class LoginPageViewModel
Inheritance
LoginPageViewModel
Assembly: EduCATS.dll
Syntax
public class LoginPageViewModel : ViewModel, INotifyPropertyChanged
Constructors
LoginPageViewModel(IPlatformServices)
Login page ViewModel constructor.
Declaration
public LoginPageViewModel(IPlatformServices services)
Parameters
Properties
ForgotPasswordCommand
Declaration
public Command ForgotPasswordCommand { get; }
Property Value
HidePasswordCommand
Declaration
public Command HidePasswordCommand { get; }
Property Value
IsLoading
Property for checking loading status.
Declaration
public bool IsLoading { get; set; }
Property Value
IsLoadingCompleted
Property for checking loading status completion.
Declaration
public bool IsLoadingCompleted { get; set; }
Property Value
IsPasswordHidden
Property for checking if password is hidden.
Declaration
public bool IsPasswordHidden { get; set; }
Property Value
LoginCommand
Declaration
public Command LoginCommand { get; }
Property Value
ParentalCommand
Declaration
public Command ParentalCommand { get; }
Property Value
Password
Declaration
public string Password { get; set; }
Property Value
RegistrationOpenCommand
Declaration
public Command RegistrationOpenCommand { get; }
Property Value
SettingsCommand
Declaration
public Command SettingsCommand { get; }
Property Value
Username
Declaration
public string Username { get; set; }
Property Value
Methods
hidePassword()
Hides or shows a password.
Declaration
protected void hidePassword()
openForgotPassword()
Declaration
public Task openForgotPassword()
Returns
openParental()
Declaration
protected Task openParental()
Returns
openRegistration()
Declaration
protected Task openRegistration()
Returns
openSettings()
Declaration
protected Task openSettings()
Returns
startLogin()
Declaration
protected Task startLogin()
Returns
| Type |
Description |
| Task |
Task.
|
Implements