Exemplo n.º 1
0
 public void ApplyFilter(ImageFilterType type)
 {
     progress.Visibility = ViewStates.Visible;
     Task.Run(delegate
     {
         PageRepository.Apply(type);
         RunOnUiThread(delegate {
             adapter.NotifyDataSetChanged();
             progress.Visibility = ViewStates.Gone;
         });
     });
 }
 private void FilterChosen(object sender, EventArgs e)
 {
     PageRepository.Apply(Choice, PageRepository.Current);
     NavigationController.PopViewController(true);
 }