Как установить все элементы управления в wpf, чтобы не фокусироваться?
У меня есть приложение wpf, и я хочу установить все на Focusable="false". Есть ли простой и элегантный способ? В настоящее время я создал стиль для каждого типа элемента управления, который я использую следующим образом:
<Style TargetType="Button">
<Setter Property="Focusable" Value="False"></Setter>
</Style>
Есть идеи для более универсального решения?
1 ответ
Решение
Почему бы не попробовать решение в две строки?
foreach (var ctrl in myWindow.GetChildren())
{
//Add codes here :)
}
Также не забудьте добавить это:
public static IEnumerable<Visual> GetChildren(this Visual parent, bool recurse = true)
{
if (parent != null)
{
int count = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < count; i++)
{
// Retrieve child visual at specified index value.
var child = VisualTreeHelper.GetChild(parent, i) as Visual;
if (child != null)
{
yield return child;
if (recurse)
{
foreach (var grandChild in child.GetChildren(true))
{
yield return grandChild;
}
}
}
}
}
}
Или даже короче, используйте это:
public static IList<Control> GetControls(this DependencyObject parent)
{
var result = new List<Control>();
for (int x = 0; x < VisualTreeHelper.GetChildrenCount(parent); x++)
{
DependencyObject child = VisualTreeHelper.GetChild(parent, x);
var instance = child as Control;
if (null != instance)
result.Add(instance);
result.AddRange(child.GetControls());
}
return result;
}