单击应用程序栏按钮时..清除 windows phone 7 中文本框中的文本不起作用。
私人无效ApplicationBarIconButton_Click(对象发送者,EventArgs e){
txtMessage.Text = string.Empty;
UpdateLayout();
}
请提出任何解决方案
单击应用程序栏按钮时..清除 windows phone 7 中文本框中的文本不起作用。
私人无效ApplicationBarIconButton_Click(对象发送者,EventArgs e){
txtMessage.Text = string.Empty;
UpdateLayout();
}
请提出任何解决方案
这似乎(如您所想)是韩语 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 = "";
}