Esempio n. 1
0
 private void AccountVerification_ItemTapped(object sender, Custom.Controls.ExtendedLabelTappedEvent e)
 {
     try
     {
     }
     catch (Exception ex)
     {
     }
 }
Esempio n. 2
0
 private void CorresponsingEUR_ItemTapped(object sender, Custom.Controls.ExtendedLabelTappedEvent e)
 {
     try
     {
     }
     catch (Exception ex)
     {
     }
 }
Esempio n. 3
0
 private void StatementHistory_ItemTapped(object sender, Custom.Controls.ExtendedLabelTappedEvent e)
 {
     try
     {
     }
     catch (Exception ex)
     {
     }
 }
Esempio n. 4
0
        private void ExtendedLabel_ItemTapped(object sender, Custom.Controls.ExtendedLabelTappedEvent e)
        {
            var text = e.Text;

            switch (text)
            {
            case "Your Profile":
                Navigation.PushAsync(new Profile.ProfilePage());
                break;

            case "Privacy Settings":
                // case "Notifications":
                break;

            case "Accounts & Cards":
                Navigation.PushAsync(new Accounts());
                break;

            case "Change Pin":
                Navigation.PushAsync(new ChangePINPage());
                break;

            case "Live Chat":
                Navigation.PushAsync(new LiveChatPage());
                break;

            case "Contact Us":
                break;

            case "Devices":
                Navigation.PushAsync(new DeviceView());
                break;

            case "FAQs":
                Navigation.PushAsync(new FAQ.FrequenceyQuestion());
                break;

            case "Terms and Conditions":
                break;

            case "Privacy Policy":
                break;

            case "About Switch":
                break;

            case "Log out":
                App.Current.MainPage = new NavigationPage(new UnProfiledLoginPage());
                break;

            default:
                break;
            }
            //  DisplayAlert("Item Tapped", text, "Ok");
        }
Esempio n. 5
0
        private void ExtendedLabel_ItemTapped(object sender, Custom.Controls.ExtendedLabelTappedEvent e)
        {
            var obj = (ExtendedLabel)sender;

            switch (obj.Text)
            {
            case "PERSONAL DETAILS":
                Navigation.PushAsync(new PersonalDetailsPage());
                break;

            case "RESIDENTIAL DETAILS":
                Navigation.PushAsync(new AddressDetailsPage());
                //Navigation.PushAsync(new ProfileVerificationDetailsPage());
                break;

            default:
                break;
            }
        }