单击应用栏按钮时..清除Windows Phone 7中文本框中的文字无法正常工作。
private void ApplicationBarIconButton_Click(object sender,EventArgs e) {
txtMessage.Text = string.Empty;
UpdateLayout();
}
请建议任何解决方案
答案 0 :(得分:0)
这似乎是(正如您所想)韩国IME本身的一个问题。首先尝试将焦点设置到它:
private void ApplicationBarIconButton_Click(object sender, EventArgs e) {
// Set focus to the page ensuring all TextBox controls are properly commited
// and that the IME session has been correctly closed.
this.Focus();
MessageTextBox.Text = "";
}
Shamelessly copy-pasted, read here for a closer look at the problem.