1

单击应用程序栏按钮时..清除 windows phone 7 中文本框中的文本不起作用。

私人无效ApplicationBarIconButton_Click(对象发送者,EventArgs e){

                txtMessage.Text = string.Empty;
                UpdateLayout();

}

请提出任何解决方案

4

1 回答 1

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 = "";
}

无耻地复制粘贴,在这里阅读以仔细查看问题。

于 2012-08-27T15:19:08.843 回答