我的情况是,我有一个TextBox和两个按钮按钮按钮1和按钮2。这就是我现在做的。。。。。。。。。。。。。。
private void Button1_click()
{
TextBox.IsReadOnly = false;
}
private void Button2_click()
{
TextBox.IsReadOnly = true;
this.Focus()
}
现在,流动,我在做什么...
- Program loads, I click on the TextBox, the SIP appears and I click somewhere on the screen the keyboard disappears.
- I press Button2 and the TextBox becomes read only and the SIP disappears (if it was shown)
- I tap on the TextBox (while it is still in the read only mode)
- I press Button1, and click on the TextBox.. BOOOMM.. the program crashes with an UnHandledException.
.
我尝试了获得文本框的焦点( ) 和 丢失的焦点( LextBox ), 但似乎没有什么帮助, 就在坠毁前, 文本框的GotFocus 没有被调用。 我点击文本框, 突然它崩溃了 。
真正试图弄清楚过去9个小时里 可能有什么变化(哦,是的,我笨手笨脚的程序员:)
有没有人能告诉我 任何可能的解决办法?
非常感谢:)