WPF:在用户绘制的控件中显示2D数组的正确方法是什么

时间:2011-05-01 12:04:16

标签: c# wpf-controls inotifycollectionchanged

我想创建一个用户绘制的控件,仅用于显示Color [,]数组。控件本身应该绘制相应颜色的矩形的NxM网格。

我正在尝试从FrameworkElement继承并覆盖OnRender方法:

public class CustomControl1 : FrameworkElement
{
    static CustomControl1()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomControl1), new FrameworkPropertyMetadata(typeof(CustomControl1)));
    }

    public Color[,] ColorCollection
    {
        get { return (Color[,])GetValue(ColorGridProperty); }
        set { SetValue(ColorGridProperty, value); }
    }

    public static readonly DependencyProperty ColorGridProperty =
        DependencyProperty.Register("ColorCollection", typeof(Color[,]), typeof(CustomControl1), 
        new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.AffectsRender));

    protected override void OnRender(DrawingContext drawingContext)
    {
        if (ColorCollection != null)
        {
            int dimx = this.ColorCollection.GetLength(0);
            int dimy = this.ColorCollection.GetLength(1);

            double w = this.ActualWidth / dimx;
            double h = this.ActualWidth / dimy;

            for (int x = 0; x < dimx; x++)
            {
                for (int y = 0; y < dimy; y++)
                {
                    SolidColorBrush brush = new SolidColorBrush(ColorCollection[x, y]);
                    drawingContext.DrawRectangle(brush, null, new Rect(x * w, 0, w, this.ActualHeight));
                }
            }
        }
    }
}

问题是当我更改底层数组中的元素时,我的控件不会重绘自身。当我分配一个全新的数组或调整控件大小时,它工作正常。

显然我需要另一个类,它以某种方式通知控制集合中的内部变化。我正在查看INotifyCollectionChange和ObservableCollection,但我发现的唯一文章是将集合绑定到现有控件,而不是自定义用户绘制的集合。所以我感到很困惑并陷入困境。

2 个答案:

答案 0 :(得分:0)

您可能可以为自己创建一个与2D数组类似的自定义集合,但您还需要实现INotifyCollectionChange接口,这不是很难实现的。这样,WPF将监听您的收藏更改并在必要时更新控件。

答案 1 :(得分:0)

我认为the sample可能有用。