4

我正在使用 Monotouch.Dialog 在我的 iphone monotouch 应用程序中创建一个页面。问题是有没有办法让入口元素在表中只读?

4

1 回答 1

5

继承 EntryElement 并覆盖 CreateTextField

    protected override UITextField CreateTextField(System.Drawing.RectangleF frame)
    {
        var field = base.CreateTextField(frame);
        field.Enabled = false;
        return field;
    }
于 2013-04-01T09:47:00.807 回答