标签: wpf user-controls
我有一个使用用户控件的不同实例的WPF应用程序;当用户单击主窗口上的按钮时,我需要将焦点设置在当前活动的用户控件实例内的文本框中。
将焦点设置在该子项目上的最佳方法是什么?
答案 0 :(得分:1)
child.Focus();
或
VisualTreeHelper.GetChild(parent, 0).Focus(); // you might want to test it for nulls