我对那些肯定是最常见的WPF要求之一感到困惑。我已阅读this question但我的解决方案实施无效。
以下是无视控件的标记:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfTest">
<Style TargetType="{x:Type local:CustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:CustomControl}">
<Border>
<TextBox x:Name="myTextBox" />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsFocused"
Value="True">
<Setter Property="FocusManager.FocusedElement"
Value="{Binding ElementName=myTextBox}" />
<Setter TargetName="myTextBox"
Property="Background"
Value="Green" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
这是包含CustomControl实例的Window的标记:
<Window x:Class="WpfTest.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfTest"
Title="Window1" Height="300" Width="300">
<local:CustomControl x:Name="CCtl" />
</Window>
这是代码隐藏的代码:
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
Loaded += (RoutedEventHandler)delegate { CCtl.Focus(); };
}
}
加载Window1时,文本框变为绿色(表示触发器有效),但焦点仍然是CCtl,而不是文本框。毫无疑问,这与显示以下数据错误的输出有关:
找不到引用'ElementName = myTextBox'的绑定源。 BindingExpression :(没有路径);的DataItem = NULL;目标元素是 'CustomControl'(Name ='CCtl'); target属性是'FocusedElement' (输入'IInputElement')。
我不知道为什么会出现这个错误。感谢任何指针,谢谢。
答案 0 :(得分:12)
请尝试将此用作触发器:
<Trigger Property="IsFocused" Value="True">
<Setter TargetName="myTextBox" Property="FocusManager.FocusedElement" Value="{Binding ElementName=myTextBox}" />
</Trigger>
错误告诉您它无法找到myTextBox,因为该名称不在应用FocusedElement属性的范围内。在这种情况下,这是在CCtl实例本身,它无法在自己的模板中看到。通过在模板内的某些东西上设置属性,Binding可以找到命名元素。
答案 1 :(得分:0)
我可能错了,但我认为你的问题在于你的财产触发器。
通过将TextBox
设置为焦点,实际上会使模板化父项上的Trigger
无效,因此触发器会展开并反转将焦点设置在TextBox上(因此不会聚焦它)。