Example #1
0
    private void OnClickConfirm()
    {
        // Localization.Current.CultureInfo = Locale.GetCultureInfoByLanguage(SystemLanguage.English);
        // if (!(ValidateUsername(username.text) && ValidatePassword(password.text)))
        // {
        //     log.Debug("Input is not valid");
        //     return;
        // }

        CurrentGlobalWindowManager.CloseWindow(this);
    }
Example #2
0
 private void OnClickCancel()
 {
     CurrentGlobalWindowManager.CloseWindow(this);
 }
Example #3
0
 private void OnOpenLoginWindow()
 {
     CurrentGlobalWindowManager.OpenWindow(WindowIds.UILoginWindow, new LoginWindowProperties());
 }