public CustomView(GetGroupName simpleDelegate, PopUpPage page)
 {
     InitializeComponent();
     BindingContext = customPageViewModel = new CustomPageViewModel();
     customPageViewModel.SetpageTitle(page);
     this.simpleDelegate = simpleDelegate;
 }
 public CustomPageView()
 {
     InitializeComponent();
     BindingContext = new CustomPageViewModel(this.Navigation);
 }