简体   繁体   中英

Navigation bar showing on sidemenu navigation ios xamarin

I used sidebar navigation xamarin component in my app, but navigationbar is showing on the sidemenu, it does not slide with the navigation controller.

xamarin component: https://components.xamarin.com/view/sidebarnavigation

Here is my code. public AgentDetails agent { get; set; } public SidebarController SidebarController { get; private set; }

    public RootController (IntPtr handle) : base (handle)
    {
    }

    public override void ViewDidLoad()
    {
        base.ViewDidLoad();

    }

    public override void LoadView()
    {
        base.LoadView();
        UIImageView img = new UIImageView(new CGRect(0, 0, 120, 50));
        img.Image = UIImage.FromBundle("Logo.png");
        img.ContentMode = UIViewContentMode.ScaleAspectFit;
        this.NavigationItem.LeftBarButtonItem = new UIBarButtonItem(img);
        //this.NavigationItem.Title = true;

        //menuOpen.SetBackgroundImage(UIImage.FromBundle("Menu.png"), UIControlState.Normal);
        UIBarButtonItem back = new UIBarButtonItem();
        back.SetBackButtonBackgroundImage(UIImage.FromBundle("Back.png"), UIControlState.Normal, UIBarMetrics.Compact);
        this.NavigationItem.BackBarButtonItem = back;

        this.NavigationController.NavigationBar.BackgroundColor = UIColor.FromRGB(255, 0, 0);

        var storyboard = UIStoryboard.FromName("Main", null);
        MainTabController tab = storyboard.InstantiateViewController("TabPage") as MainTabController;
        SideMenuController side = storyboard.InstantiateViewController("SideMenu") as SideMenuController;
        side.rootController = this;
        tab.agent = agent;
        SidebarController = new SidebarController(this, tab, side);

        this.NavigationController.NavigationBar.Translucent = false;
        menuOpen.TouchUpInside += MenuOpen_TouchUpInside;
        LoadSchedule();
    }

    void LoadSchedule()
    {
        AgentAPI agentData = new AgentAPI();
        agentData.EmpId = agent.PortalId;
        agentData.ScheduleHours((schedule) =>
        {
            JObject jsondata = JsonConvert.DeserializeObject<JObject>(schedule);
            if (jsondata["status"].ToString() == "200")
            {
                agent.Schedule = JsonConvert.DeserializeObject<List<Schedule>>(jsondata["activity"].ToString());
            }
        });
    }

    private void MenuOpen_TouchUpInside(object sender, EventArgs e)
    {
        SidebarController.ToggleMenu();
    }

image of my sidemenu

Don't embed the RootViewController in the NavigationController . Embed the ContentController instead.

For example , the code snippet in RootViewController.cs like this:

SidebarController = new SidebarController(this, new UINavigationController(new ContentController()), new SideMenuController());

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM