在ItemsControl DataTemplate中设置Canvas属性


79

我正在尝试与此绑定ItemsControl

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

通过使用this DataTemplate,我试图将Node元素分别Canvas正确放置在正确的位置:

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

但是,它没有按预期工作。我所有的节点元素都在同一位置绘制在一起。关于如何做到这一点的任何建议?

Answers:


136

附加属性仅适用于的直接子级CanvasItemsControl会将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>

谢谢。我大约5分钟前找到了此解决方案。我想我很快就发布了问题。:)
atsjoo

9
呵呵..我也很喜欢那些AHA时刻;)..尽管它并不全是..也许您的问题有一天能对其他人有所帮助..您永远不会知道!
Arcturus

它也对这里有帮助,对所有人+1。:)
符文雅各布森

1
@skb我有同样的问题,是否有Silverlight解决方法?
themaestro 2011年

4
如果我的X和Y位置应该在ItemsSource的对象之一之内怎么办?我的ItemsSource中有一个Point对象。
El Mac
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.