ios - MonoTouch.Dialog - EntryElement 不允许编辑键入的文本
<p><p>我创建了一个简单的<code>EntryElement</code>“eNote”并将其添加到<code>Section</code>。 super 简单。</p>
<pre><code> Section secNote = new Section ("Notes");
eNote.AutocapitalizationType = UITextAutocapitalizationType.None;
eNote.AutocorrectionType = UITextAutocorrectionType.No;
eNote.KeyboardType = UIKeyboardType.ASCIICapable;
secNote.Add (eNote);
</code></pre>
<p>我们输入这样的句子:</p>
<p> <img src="/image/44ZE9.jpg" alt="enter image description here"/> </p>
<p>然后,当我尝试通过点击“U”之前在“Unity”之前添加文本“我喜欢”时,输入第一个字母,但其余字母放在文本末尾。结果是我们无法编辑文本。</p>
<p> <img src="/image/Oq10d.jpg" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>简短的回答是这是一个错误,应该使用 <a href="https://bugzilla.xamarin.com/" rel="noreferrer noopener nofollow">Xamarin</a> 提交。 </p>
<p>但是我确实找到了解决方法。使用程序集浏览器,您可以“借用”EntryElement 的现有实现并将 Value 属性更改为以下内容。 </p>
<pre><code>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;
}
}
}
</code></pre>
<p>黑客愉快!</p></p>
<p style="font-size: 20px;">关于ios - MonoTouch.Dialog - EntryElement 不允许编辑键入的文本,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10520894/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10520894/
</a>
</p>
页:
[1]