textBox获得焦点

时间:2012-02-01 02:48:47

标签: windows-phone-7

我希望在页面显示时让TextBox获得焦点。 我写道:

protected override void onManipulationStarted(ManipulationStartedArgs e)
{

    textBox1.Focus();
    base.onManipulationStarted(  e);

}

但没有什么是幸福的

欢迎任何评论

1 个答案:

答案 0 :(得分:1)

如果要在加载页面时设置焦点,则必须在页面的已加载事件中添加事件处理程序。

写下

  

textBox1.Focus();

在page.xaml.cs中加载的事件处理程序中的代码