xamarin UILabel 缩进

来源:互联网 发布:我的世界pc手机版js 编辑:程序博客网 时间:2024/06/05 18:19
UIStringAttributes stringAttributes = new UIStringAttributes {                        Font = defFont,                        ForegroundColor = UIColor.Black,                        ParagraphStyle = new NSMutableParagraphStyle () { LineSpacing = 8.0f }                    };                    var AttributedText = new NSMutableAttributedString (cellData.BriefDescription);                    AttributedText.AddAttributes (stringAttributes, new NSRange (0, cellData.BriefDescription.Length));                    BriefDescriptionLbl.AttributedText = AttributedText;

0 0