I have button click event where i initialize a new TextBox and try to get focus on it, its not working.(I guess the TextBox isnt loaded yet so not getting focused)
private void Button_Click(object sender, RoutedEventArgs e)
{
TextBox box = new TextBox();
box.Width = 200;
box.Height = 30;
box.Focusable = true;
box.Focus();
this.stackPanel.Children.Add(box);
}
How can i achieve focus?
In Xaml i have a StackPanel and a Button
Thanks in advance.