0

我正在 ios(Xamarin) 中创建 SlideNavigation Drawer。我在以下链接的帮助下创建了

https://github.com/thedillonb/MonoTouch.SlideoutNavigation

代码可以按我的意愿正常工作。

代码 :

class DummyControllerLeft : DialogViewController
    {
        float labelHeight;

        UIImageView profileImage;

        public DummyControllerLeft()
           : base(UITableViewStyle.Plain, new RootElement(""))
        {
            this.labelHeight = labelHeight;

            Root.Add(new Section()
            {
                new StyledStringElement("Home", () => NavigationController.PushViewController(new HomeViewController(), true)) { TextColor = UIColor.White, BackgroundColor = UIColor.Clear, Font = UIFont.FromName("Helvetica-Bold", 16f) },

            });
            TableView.SeparatorStyle = UITableViewCellSeparatorStyle.None;
            TableView.BackgroundColor = UIColor.Clear.FromHexString("#0072BA", 1.0f);

        }
}

但是正如你所看到的,我只能String在我的代码案例中添加名称,它是“Home”。现在我想添加Image.

我在谷歌和 SO 中搜索了很多东西。但没有什么是我的工作。

任何帮助将不胜感激。

4

1 回答 1

1

您可以设置 Image 属性 StyledStringElement 将解决您的问题。

StyledStringElement home = new StyledStringElement ("Home", () => NavigationController.PushViewController (new HomeViewController (), true)) { TextColor = UIColor.White, BackgroundColor = UIColor.Clear };
home.Image = new UIImage ("noimage.png");

Root.Add (new Section () {
                        home
                    });
于 2016-12-26T13:43:25.677 回答