MonoTouch对话框中的纯文本?

时间:2012-03-15 23:14:37

标签: c# ios xamarin.ios monotouch.dialog

我想在MonoTouch DialogViewControlle r部分添加一些独立的说明文字。我开始使用MultilineElement,但我需要摆脱该部分的背景。这可能吗?我尝试制作一个OwnerDrawnElement,但看起来很可怕(黑色背景而非多线):

    public override void Draw (RectangleF bounds, CGContext context, UIView view)
    {
        //UIColor.Clear.SetFill ();
        //context.FillRect (bounds);
        UIColor.White.SetColor ();  
        view.DrawString (this.Text, new RectangleF (10, 15, bounds.Width - 20, bounds.Height - 30), UIFont.SystemFontOfSize (14.0f), UILineBreakMode.WordWrap);
    }

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您不能使用Section标题吗?

我看起来像无声响铃文字: enter image description here

另一种选择是添加UIView(并添加标签...)作为标题(或页脚)。但是,这会将您限制在表格的顶部(或底部)。