Пример #1
0
        void NavigateTo(OptionItem option)
        {
            if (previousItem != null)
                previousItem.Selected = false;

            option.Selected = true;
            previousItem = option;

            var displayPage = PageForOption(option);
                     
            Detail = new NavigationPage(displayPage)
            {
              Tint = Helpers.Color.Blue.ToFormsColor(),
            };


            IsPresented = false;
        }
Пример #2
0
 Page PageForOption (OptionItem option)
 {
     if (option.Title == "Contacts")
         return new MasterPage<Contact>(option);
     if (option.Title == "Leads")
         return new MasterPage<Lead>(option);
     if (option.Title == "Accounts") {
         var page = new MasterPage<Account>(option);
         var cell = page.List.Cell;
         cell.SetBinding(TextCell.TextProperty, "Company");
         return page;
     }
     if (option.Title == "Opportunities") {
         var page = new MasterPage<Opportunity>(option);
         var cell = page.List.Cell;
         cell.SetBinding(TextCell.DetailProperty, "EstimatedAmount");
         return page;
     }
     throw new NotImplementedException("Unknown menu option: " + option.Title);
 }