Skip to main content
A newer version of this page is available. .

How to: Bind a Grid to an ICollectionView

  • 4 minutes to read

The example below shows how to bind DXGrid to ICollectionView.

using System.Windows;

namespace CollectionViewSupport {
    public partial class MainWindow : Window {
        public MainWindow() {
            InitializeComponent();
        }
    }
}

The image below shows the result.

WPF Grid ICV sync

See Also