Пример #1
0
        /*
         * PARTIAL CLASS - ZÁLOŽKA PROFIL
         */

        private void IntializeProfile()
        {
            if (Authentification.IsLoggedIn)
            {
                SummaryPage profilePage = new SummaryPage();
                frSummary.Navigate(profilePage);

                PasswordChangePage pswdPage = new PasswordChangePage();
                frPasswordChange.Navigate(pswdPage);

                OtherSettingsPage otherSettingsPage = new OtherSettingsPage();
                frOtherOptions.Navigate(otherSettingsPage);
            }
        }
Пример #2
0
        // Aktualizace stránek při přechodu z jedné na druhou
        private void tabControlProfile_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (tabProfileSummary.IsSelected && e.Source is TabControl)
            {
                SummaryPage profilePage = new SummaryPage();
                frSummary.Navigate(profilePage);
            }

            if (tabProfilePswdChange.IsSelected && e.Source is TabControl)
            {
                PasswordChangePage pswdPage = new PasswordChangePage();
                frPasswordChange.Navigate(pswdPage);
            }

            if (tabProfileOtherOptions.IsSelected && e.Source is TabControl)
            {
                OtherSettingsPage otherSettingsPage = new OtherSettingsPage();
                frOtherOptions.Navigate(otherSettingsPage);
            }
        }