可以在Monotouch.Dialog上只读取EntryElement吗?

时间:2013-04-01 08:01:46

标签: iphone xamarin.ios monotouch.dialog

我正在使用Monotouch.Dialog在我的iphone monotouch应用程序中创建页面。 问题是,是否有一种方法可以在表格中只读取条目元素?

1 个答案:

答案 0 :(得分:5)

继承EntryElement并覆盖CreateTextField

    protected override UITextField CreateTextField(System.Drawing.RectangleF frame)
    {
        var field = base.CreateTextField(frame);
        field.Enabled = false;
        return field;
    }