当我的 Silverlight 页面加载时,我想将焦点设置在控件上。一个不那么明显的解决方案的简单问题。
我尝试了以下没有运气。页面加载,但我的控件没有焦点。
public MainPage()
{
InitializeComponent();
if( !DesignerProperties.IsInDesignTool )
{
// some init code goes here...
this.Loaded += ( s, e ) =>
{
this.InitFocus();
};
}
}
private void InitFocus()
{
this.PropNumTextBox.Focus();
}