我希望在页面显示时让TextBox获得焦点。 我写道:
protected override void onManipulationStarted(ManipulationStartedArgs e)
{
textBox1.Focus();
base.onManipulationStarted( e);
}
但没有什么是幸福的
欢迎任何评论
答案 0 :(得分:1)
如果要在加载页面时设置焦点,则必须在页面的已加载事件中添加事件处理程序。
写下
textBox1.Focus();
在page.xaml.cs中加载的事件处理程序中的代码