OStack程序员社区-中国程序员成长平台

标题: ios - MonoTouch.Dialog - EntryElement 不允许编辑键入的文本 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 13:46
标题: ios - MonoTouch.Dialog - EntryElement 不允许编辑键入的文本

我创建了一个简单的EntryElement“eNote”并将其添加到Section。 super 简单。

        Section secNote = new Section ("Notes");
        eNote.AutocapitalizationType = UITextAutocapitalizationType.None;
        eNote.AutocorrectionType = UITextAutocorrectionType.No;
        eNote.KeyboardType = UIKeyboardType.ASCIICapable;
        secNote.Add (eNote);

我们输入这样的句子:

enter image description here

然后,当我尝试通过点击“U”之前在“Unity”之前添加文本“我喜欢”时,输入第一个字母,但其余字母放在文本末尾。结果是我们无法编辑文本。

enter image description here



Best Answer-推荐答案


简短的回答是这是一个错误,应该使用 Xamarin 提交。

但是我确实找到了解决方法。使用程序集浏览器,您可以“借用”EntryElement 的现有实现并将 Value 属性更改为以下内容。

public string Value
{
    get
    {
        return this.val;
    }
    set
    {
        this.val = value;
        if (this.entry != null && value != null && !value.Equals (this.entry.Text))
        {
            this.entry.Text = value;
        }
    }
}

黑客愉快!

关于ios - MonoTouch.Dialog - EntryElement 不允许编辑键入的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10520894/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4