我遇到了一个问题,即如果该控件在初始化时不可见,则在我的一个用户控件上没有正确设置绑定。我已经使用以下愚蠢的控件重复了这个问题:
public class Test3 : Control
{
static Test3()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(Test3), new FrameworkPropertyMetadata(typeof(Test3)));
}
public string Test
{
get { return (string)GetValue(TestProperty); }
set { SetValue(TestProperty, value); }
}
public static readonly DependencyProperty TestProperty =
DependencyProperty.Register("Test", typeof(string),
typeof(Test3), new UIPropertyMetadata("test3 default text"));
}
public class Test2 : Control
{
static Test2()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(Test2), new FrameworkPropertyMetadata(typeof(Test2)));
}
public FrameworkElement Test3Control
{
get { return (FrameworkElement)GetValue(Test3ControlProperty); }
set { SetValue(Test3ControlProperty, value); }
}
public static readonly DependencyProperty Test3ControlProperty =
DependencyProperty.Register("Test3Control", typeof(FrameworkElement),
typeof(Test2), new UIPropertyMetadata(null));
public string Test
{
get { return (string)GetValue(TestProperty); }
set { SetValue(TestProperty, value); }
}
public static readonly DependencyProperty TestProperty =
DependencyProperty.Register("Test", typeof(string), typeof(Test2),
new UIPropertyMetadata("test2 default text"));
}
public partial class Test1 : UserControl
{
public Test1()
{
InitializeComponent();
}
public string Test
{
get { return (string)GetValue(TestProperty); }
set { SetValue(TestProperty, value); }
}
public static readonly DependencyProperty TestProperty =
DependencyProperty.Register("Test", typeof(string),
typeof(Test1), new UIPropertyMetadata("test1 default text"));
}
用于usercontrol的XAML:
<UserControl x:Class="Test.Test1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dummy="clr-namespace:WpfTestApplication.Test"
Name="ucThis">
<UserControl.Resources>
<Style TargetType="{x:Type test:Test2}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type test:Test2}">
<GroupBox Header="Test2">
<StackPanel>
<TextBox IsEnabled="False" Text="{TemplateBinding Test}"/>
<GroupBox Header="Test3">
<ContentPresenter Content="{TemplateBinding Test3Control}"/>
</GroupBox>
</StackPanel>
</GroupBox>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</UserControl.Resources>
<Grid>
<test:Test2 Test="{Binding ElementName=ucThis,Path=Test}">
<test:Test2.Test3Control>
<test:Test3 Test="{Binding ElementName=ucThis,Path=Test}">
<test:Test3.Template>
<ControlTemplate TargetType="{x:Type test:Test3}">
<TextBox IsEnabled="False" Text="{TemplateBinding Test}"/>
</ControlTemplate>
</test:Test3.Template>
</test:Test3>
</test:Test2.Test3Control>
</test:Test2>
</Grid>
</UserControl>
...和主窗口的XAML(无论如何都是它的胆量):
<DockPanel>
<StackPanel>
<TextBox Name="tbInput"/>
<Expander Header="Initially Visible" IsExpanded="True">
<test:Test1 Test="{Binding ElementName=tbInput, Path=Text}" />
</Expander>
<Expander Header="Initially Collapsed" IsExpanded="False">
<test:Test1 Test="{Binding ElementName=tbInput, Path=Text}" />
</Expander>
</StackPanel>
</DockPanel>
我希望无论输入到文本框中的任何文本(“tbInput”)都会显示在Test2和Test3框中 - 实际上它适用于Test2的两个实例,但仅适用于最初可见的Test3。最初折叠的Test3始终显示默认文本,即使在输入文本时它是可见的。
我尝试使用Snoop对此进行调查,但是当我使用Snoop评估树的相关部分时,问题会自行纠正,因此它没有太多帮助。
导致此行为的原因是什么?我该如何纠正?我在哪里可以阅读更多相关信息?
更新:
通过观察输出窗口,我发现了以下错误消息:
System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=ucThis'. BindingExpression:Path=Test; DataItem=null; target element is 'Dummy3' (Name=''); target property is 'Test' (type 'String')
通过处理这些控件上的加载和初始化事件,我可以看到Dummy1和Dummy2在启动时加载后发生此错误。虚拟3在可见之前不会加载。
答案 0 :(得分:1)
我认为问题在于,由于模板尚未应用于折叠的Test3
实例,因此尚未将其插入可视树中。因此,在创建绑定时,它不在外Test1
实例的名称范围内,因此无法解析为ucThis
指定的名称ElementName
。
您可以通过将Test3Control
添加到Test2
的逻辑树来解决此问题。尝试修改依赖项属性定义,如下所示:
public static readonly DependencyProperty Test3ControlProperty =
DependencyProperty.Register("Test3Control", typeof(FrameworkElement),
typeof(Test2),
new UIPropertyMetadata(null, OnTest3ControlPropertyChanged));
private static void OnTest3ControlPropertyChanged(
DependencyObject d,
DependencyPropertyChangedEventArgs e)
{
var source = (Test2)d;
var oldValue = e.OldValue as FrameworkElement;
var newValue = e.NewValue as FrameworkElement;
if (oldValue != null)
source.RemoveLogicalChild(oldValue);
if (newValue != null)
source.AddLogicalChild(newValue);
}
在大多数情况下,当您向控件添加新的基于UIElement
的属性时,您需要确保将其添加到逻辑树中。这不会自动发生。就此而言,它也不会自动添加到可视树中。在这种情况下,它只被加载到可视化树中,因为它被明确地插入到模板中。
查看WPF核心控件的内部结构,例如Decorator
(从Border
派生)及其Child
属性,以查看定义新的时可能需要哪种管道控制类型。
另请注意有多少“子控件”属性是不依赖项属性。基于Visual
的依赖项属性很容易遇到问题,特别是当您尝试通过setter更改它们或为它们设置动画时。我发现最好不要通过简单地将子控件暴露为常规CLR属性来阻止开发人员滥用属性并为自己制造麻烦。
答案 1 :(得分:0)
我不确定你的特定问题,但是我将Test2的隐式样式定义移动到Generic.xaml模块,该模块必须位于“Themes”文件夹中。框架将自动扫描该文件以查找隐式样式。