如何在Windows Phone 7应用程序的文本框中清除韩文文本

时间:2012-08-27 15:13:52

标签: windows-phone-7.1

单击应用栏按钮时..清除Windows Phone 7中文本框中的文字无法正常工作。

private void ApplicationBarIconButton_Click(object sender,EventArgs e)         {

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

}

请建议任何解决方案

1 个答案:

答案 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.