gpt4 book ai didi

c# - 在 ItemsControl DataTemplate 中设置 Canvas 属性

转载 作者:IT王子 更新时间:2023-10-29 03:41:50 24 4
gpt4 key购买 nike

我正在尝试将数据绑定(bind)到此 ItemsControl:

<ItemsControl ItemsSource="{Binding Path=Nodes, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Canvas />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>

通过使用此 DataTemplate,我尝试将我的 Node 元素单独放置在 Canvas 上:

<DataTemplate DataType="{x:Type Model:EndNode}">
<Controls:EndNodeControl Canvas.Left="{Binding Path=XPos}" Canvas.Top="{Binding Path=YPos}" />
</DataTemplate>

但是,它没有按预期工作。我所有的节点元素都在同一位置彼此重叠绘制。关于如何实现这一点有什么建议吗?

最佳答案

附加属性仅适用于 Canvas 的直接子级。 ItemsControl 会将 ContentPresenter 控件作为其直接子控件,因此您可能还想为其添加样式:

<ItemsControl ItemsSource="{Binding Path=Nodes}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Canvas />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemContainerStyle>
<Style TargetType="ContentPresenter">
<Setter Property="Canvas.Left" Value="{Binding Path=XPos}" />
<Setter Property="Canvas.Top" Value="{Binding Path=YPos}" />
</Style>
</ItemsControl.ItemContainerStyle>
</ItemsControl>

关于c# - 在 ItemsControl DataTemplate 中设置 Canvas 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1265364/

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