找不到WPF绑定属性

问题描述 投票:0回答:2

我有绑定问题。

这一行:Center="{Binding Position, RelativeSource={RelativeSource TemplatedParent}}"在运行时导致问题。它给了我这个错误:

System.Windows.Data错误:40:BindingExpression路径错误:'object'''ContentPresenter'(Name ='')'上找不到'Position'属性。 BindingExpression:路径=位置; DataItem ='ContentPresenter'(Name =''); target元素是'EllipseGeometry'(HashCode = 63639374); target属性是'Center'(类型'Point')

这是我的模特:

public interface IRadarReader
{
    BindingList<RadarEntity> Entities { get; }
    RadarEntity LocalPlayer { get; }
    bool Enabled { get; set; }
}

public class RadarEntity
{
    public Point Position { get; set; }
    public PlayerTeam Team { get; set; }
    public EntityType Type { get; set; }
}

我正在使用System.Windows.Point for Position。

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:l="clr-namespace:CSGOHack.GUI"
    x:Class="Game.GUI.MainWindow"
    Title="Game Tool" Height="334" Width="415"
DataContext="{Binding RelativeSource={RelativeSource Self}}">

<Window.Resources>
    <l:RadarTeamToColorConverter x:Key="RadarTeamToColorConverter"/>
</Window.Resources>

<Grid>
    <GroupBox Header="Radar">
        <Viewbox>
            <ItemsControl ItemsSource="{Binding GameReader.RadarReader.Entities}" Background="#FFA4D16E">
                <ItemsControl.ItemsPanel>
                    <ItemsPanelTemplate>
                        <Canvas Width="100" Height="100"/>
                    </ItemsPanelTemplate>
                </ItemsControl.ItemsPanel>
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <Path Fill="{Binding Team, Converter={StaticResource RadarTeamToColorConverter}}">
                            <Path.Data>
                                <EllipseGeometry x:Name="PlayerEllipse"
                                    Center="{Binding Position, RelativeSource={RelativeSource TemplatedParent}}"
                                    RadiusX="5"
                                    RadiusY="5"/>
                            </Path.Data>
                        </Path>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>
        </Viewbox>
    </GroupBox>
</Grid>

在Snoop 2.8.0中我可以看到其他东西都正确绑定了。值转换器正在工作。只有这个“位置”属性突出显示为红色,并且在Snoop中有错误。

错误在哪里?

c# wpf templates binding itemscontrol
2个回答
2
投票

{TemplatedParent}不会工作,因为当你从错误中读取时,它会解析为ContentPresenter。如果您对此感兴趣,您应该使用Snoop检查可视树。

但是,我怀疑@Hamlet的答案是否有效。 EllipseGeometry元素不继承DataContextEllipseGeometry元素不在可视树中。

你可以试试这个:

Center="{Binding DataContext.Position, RelativeSource={RelativeSource TemplatedParent}}"

1
投票

为什么你绑定到被诱惑的父母?这应该工作。

<Path.Data>
    <EllipseGeometry x:Name="PlayerEllipse"
                Center="{Binding Position}"
                RadiusX="5"
                RadiusY="5"/>
</Path.Data>
© www.soinside.com 2019 - 2024. All rights reserved.