60

我有点惊讶,无法通过 XAML 为 Canvas.Children 设置绑定。我不得不求助于看起来像这样的代码隐藏方法:

private void UserControl_Loaded(object sender, RoutedEventArgs e)
{
    DesignerViewModel dvm = this.DataContext as DesignerViewModel;
    dvm.Document.Items.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(Items_CollectionChanged);

    foreach (UIElement element in dvm.Document.Items)
        designerCanvas.Children.Add(element);
}

private void Items_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
    ObservableCollection<UIElement> collection = sender as ObservableCollection<UIElement>;

    foreach (UIElement element in collection)
        if (!designerCanvas.Children.Contains(element))
            designerCanvas.Children.Add(element);

    List<UIElement> removeList = new List<UIElement>();
    foreach (UIElement element in designerCanvas.Children)
        if (!collection.Contains(element))
            removeList.Add(element);

    foreach (UIElement element in removeList)
        designerCanvas.Children.Remove(element);
}

我宁愿像这样在 XAML 中设置一个绑定:

<Canvas x:Name="designerCanvas"
        Children="{Binding Document.Items}"
        Width="{Binding Document.Width}"
        Height="{Binding Document.Height}">
</Canvas>

有没有办法在不采用代码隐藏方法的情况下实现这一点?我已经对这个主题进行了一些谷歌搜索,但对于这个特定问题并没有想出太多。

我不喜欢我目前的方法,因为它通过让 View 意识到它是 ViewModel 来破坏我漂亮的 Model-View-ViewModel。

4

5 回答 5

146
<ItemsControl ItemsSource="{Binding Path=Circles}">
    <ItemsControl.ItemsPanel>
         <ItemsPanelTemplate>
              <Canvas Background="White" Width="500" Height="500"  />
         </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Ellipse Fill="{Binding Path=Color, Converter={StaticResource colorBrushConverter}}" Width="25" Height="25" />
        </DataTemplate>
    </ItemsControl.ItemTemplate>
    <ItemsControl.ItemContainerStyle>
        <Style>
            <Setter Property="Canvas.Top" Value="{Binding Path=Y}" />
            <Setter Property="Canvas.Left" Value="{Binding Path=X}" />
        </Style>
    </ItemsControl.ItemContainerStyle>
</ItemsControl>
于 2009-06-23T01:18:19.263 回答
26

其他人已经就如何做你真正想做的事情给出了可扩展的答复。我将解释为什么你不能Children直接绑定。

问题很简单——数据绑定目标不能是只读属性,而且Panel.Children是只读的。那里的收藏没有特殊处理。相反,ItemsControl.ItemsSource它是一个读/写属性,即使它是集合类型 - 对于 .NET 类来说很少出现,但需要它来支持绑定方案。

于 2009-07-30T21:57:06.170 回答
20

ItemsControl旨在从其他集合(甚至非 UI 数据集合)创建 UI 控件的动态集合。

您可以模板 anItemsControl以在Canvas. 理想的方法是将支持面板设置为 a Canvas,然后在直接子级上设置Canvas.LeftandCanvas.Top属性。我无法让它工作,因为ItemsControl它用容器包装了它的孩子,而且很难Canvas在这些容器上设置属性。

相反,我使用 aGrid作为所有项目的箱,并单独绘制它们Canvas。这种方法有一些开销。

<ItemsControl x:Name="Collection" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <ItemsControl.ItemTemplate>
        <DataTemplate DataType="{x:Type local:MyPoint}">
            <Canvas HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
                <Ellipse Width="10" Height="10" Fill="Black" Canvas.Left="{Binding X}" Canvas.Top="{Binding Y}"/>
            </Canvas>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

这是我用来设置源集合的代码:

List<MyPoint> points = new List<MyPoint>();

points.Add(new MyPoint(2, 100));
points.Add(new MyPoint(50, 20));
points.Add(new MyPoint(200, 200));
points.Add(new MyPoint(300, 370));

Collection.ItemsSource = points;

MyPoint是一个行为就像System版本一样的自定义类。我创建它是为了证明您可以使用自己的自定义类。

最后一个细节:您可以将 ItemsSource 属性绑定到您想要的任何集合。例如:

<ItemsControls ItemsSource="{Binding Document.Items}"><!--etc, etc...-->

有关 ItemsControl 及其工作原理的更多详细信息,请查看以下文档:MSDN Library Reference数据模板WPF 博士关于 ItemsControl 的系列

于 2009-05-20T20:35:34.240 回答
14
internal static class CanvasAssistant
{
    #region Dependency Properties

    public static readonly DependencyProperty BoundChildrenProperty =
        DependencyProperty.RegisterAttached("BoundChildren", typeof (object), typeof (CanvasAssistant),
                                            new FrameworkPropertyMetadata(null, onBoundChildrenChanged));

    #endregion

    public static void SetBoundChildren(DependencyObject dependencyObject, string value)
    {
        dependencyObject.SetValue(BoundChildrenProperty, value);
    }

    private static void onBoundChildrenChanged(DependencyObject dependencyObject,
                                               DependencyPropertyChangedEventArgs e)
    {
        if (dependencyObject == null)
        {
            return;
        }
        var canvas = dependencyObject as Canvas;
        if (canvas == null) return;

        var objects = (ObservableCollection<UIElement>) e.NewValue;

        if (objects == null)
        {
            canvas.Children.Clear();
            return;
        }

        //TODO: Create Method for that.
        objects.CollectionChanged += (sender, args) =>
                                            {
                                                if (args.Action == NotifyCollectionChangedAction.Add)
                                                    foreach (object item in args.NewItems)
                                                    {
                                                        canvas.Children.Add((UIElement) item);
                                                    }
                                                if (args.Action == NotifyCollectionChangedAction.Remove)
                                                    foreach (object item in args.OldItems)
                                                    {
                                                        canvas.Children.Remove((UIElement) item);
                                                    }
                                            };

        foreach (UIElement item in objects)
        {
            canvas.Children.Add(item);
        }
    }
}

并使用:

<Canvas x:Name="PART_SomeCanvas"
        Controls:CanvasAssistant.BoundChildren="{TemplateBinding SomeItems}"/>
于 2010-09-20T12:37:00.530 回答
12

我不相信它可以与 Children 属性结合使用。我今天实际上试图这样做,但它像你一样在我身上犯了错误。

Canvas 是一个非常基本的容器。它真的不是为这种工作而设计的。您应该查看众多 ItemsControls 之一。您可以将 ViewModel 的数据模型 ObservableCollection 绑定到它们的 ItemsSource 属性,并使用 DataTemplates 来处理每个项目在控件中的呈现方式。

如果您找不到以令人满意的方式呈现您的项目的 ItemsControl,您可能必须创建一个自定义控件来满足您的需要。

于 2009-05-20T20:05:07.343 回答