永远不会设置WinRT DependencyProperty

时间:2015-12-16 09:56:16

标签: c# xaml user-controls windows-runtime dependency-properties

我在自定义DependencyProperty中的UserControl存在一些问题。

我需要以特定方式显示有关人的信息。为此,我有几个UserControls收到List<PeopleList>,其中包含(显然)一个或多个人。

让我向您展示我的(简化)代码,然后我会向您解释我的应用程序的实际行为。

这是我的UserControl:

public abstract class PeopleLine : UserControl
{
    public static readonly DependencyProperty PeopleListProperty =
        DependencyProperty.Register("PeopleList", typeof(List<PeopleModel>), typeof(PeopleLine), new PropertyMetadata(default(List<PeopleModel>)));

    public List<PeopleModel> PeopleList
    {
        get { return (List<PeopleModel>)GetValue(PeopleListProperty); }
        set { SetValue(PeopleListProperty, value); }
    }
}

然后我的xaml:

<local:PeopleLine
    x:Class="MyApp.Controls.EventSheet.OnePeople"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:MyApp.Controls.EventSheet"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid
        Margin="0 5"
        VerticalAlignment="Top"
        Height="51">
        <TextBlock
            Grid.Column="1"
            HorizontalAlignment="Center"
            Foreground="Red"
            FontSize="25"
            Text="{Binding PeopleList[0].Name}"/>
    </Grid>
</local:PeopleLine>

这一切都始于我的Page,其中ItemsControl包含正确的ItemsSource(我已经检查过)和ItemTemplateSelector(也完美无缺)。以下是选择器使用的DataTemplate之一:

<DataTemplate x:Key="OnePeople">
    <peoplecontrols:OnePeople
        PeopleList="{Binding LinePeopleList}"/>
</DataTemplate>

我使用了几个不太重要的模型,因为我将代码简化为只有最重要的信息。

所以,回到我的问题。当用字符串替换选择器的DataTemplate中的peoplecontrols:OnePeople并将LinePeopleList[0].Name作为Text时,我显示了正确的文本,证明我的数据在此时是正确的。 问题是,在放回peoplecontrols:OnePeople时,我的DependencyProperty永远不会被设置。我在PeopleList的setter中设置了一个断点,它永远不会触发。

我尝试了多次修改(特别是在此post中提供的修改,因此已经尝试将typeof(List<PeopleModel>)替换为typeof(object)),但没有成功。另外,我尝试将DependencyProperty替换为string并直接在DataTemplate中发送名称,但仍未调用setter ...

我现在没有更多的想法,也不了解我的代码有什么问题。任何帮助将不胜感激。 提前谢谢。

托马斯

1 个答案:

答案 0 :(得分:1)

在调用InitializeComponent之后,尝试在 UserControl的构造函数中添加以下行:

(this.Content as FrameworkElement).DataContext = this;

我创建了一个关于此的示例应用程序。希望它能正确反映您的情况:

https://github.com/mikoskinen/uwpusercontrollistdp

如果您克隆应用并运行它,您会注意到绑定不起作用。但是如果你从UserControl取消注释Datacontext = this这一行,一切都应该正常。这是工作代码:

    public PeopleLine()
    {
        this.InitializeComponent();

        (this.Content as FrameworkElement).DataContext = this;
    }