现在的位置: 首页 > 综合 > 正文

xamarin UILabel 缩进

2019年05月16日 ⁄ 综合 ⁄ 共 381字 ⁄ 字号 评论关闭
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;

抱歉!评论已关闭.