Ejemplo n.º 1
0
        private async void DownloadOption_OnClicked(object sender, EventArgs e)
        {
            var details = new DetailsPage {
                BindingContext = Application.Current.BindingContext
            };

            details.InsertChild(new DownloadOption());
            await Application.Current.MainPage.Navigation.PushAsync(details);
        }
Ejemplo n.º 2
0
        private async void OnClick_ChannelSettings(object sender, EventArgs e)
        {
            // await Application.Current.MainPage.DisplayAlert("Message", "This is call Channel list.", "OK", "Cancel");
            var details = new DetailsPage {
                BindingContext = Application.Current.BindingContext
            };

            details.InsertChild(new AccountChannel());
            await Application.Current.MainPage.Navigation.PushAsync(details);
        }