简体   繁体   English

导航栏显示在侧边菜单导航iOS Xamarin

[英]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组件,但是导航栏显示在侧边菜单中,它不随导航控制器一起滑动。

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

Here is my code. 这是我的代码。 public AgentDetails agent { get; 公共AgentDetails代理{ set; 组; } public SidebarController SidebarController { get; } 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 . 不要将RootViewController嵌入NavigationController Embed the ContentController instead. 嵌入ContentController。

For example , the code snippet in RootViewController.cs like this: 例如, RootViewController.cs的代码片段如下所示:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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