gpt4 book ai didi

c# - 从未设置 WinRT DependencyProperty

转载 作者:太空宇宙 更新时间:2023-11-03 12:54:46 27 4
gpt4 key购买 nike

我的 DependencyProperty 有一些问题在自定义中 UserControl .

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

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

这是我的用户控件:

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>

我使用了几个在这里并不重要的模型,因为我简化了我的代码以仅包含最重要的信息。

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

我尝试了几种修改(尤其是在 post 中给出的修改,因此已经尝试用 typeof(List<PeopleModel>) 替换 typeof(object))但没有成功。另外,我尝试更换我的 DependencyPropertystring并直接发送DataTemplate中的姓名但是 setter 仍然没有被调用...

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

托马斯

最佳答案

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

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

我为此创建了一个示例应用程序。希望它能正确反射(reflect)您的情况:

https://github.com/mikoskinen/uwpusercontrollistdp

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

    public PeopleLine()
{
this.InitializeComponent();

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

关于c# - 从未设置 WinRT DependencyProperty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34308815/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com