Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two datagrids side by side bound to different data tables and each with their own view.

The datatables both have the same number of rows, and I want both grids to maintain the same scroll position.

I am having trouble finding a way to do this using MVVM... anyone have any ideas?

Thanks! -Steven

share|improve this question

3 Answers

up vote 7 down vote accepted

Take a look at codeproject Scroll Synchronization

share|improve this answer
Thanks for the quick response! This was exactly what I was looking for, already have it implemented and working :) – stevosaurus May 14 '10 at 20:30

I was able to overcome this issue via some reflection hacks:

<DataGrid Name="DataGrid1" ScrollViewer.ScrollChanged="DataGrid1_ScrollChanged" />
<DataGrid Name="DataGrid2" />

and the code itself is:

    private void DataGrid1_ScrollChanged(object sender, ScrollChangedEventArgs e)
    {
        if (e.HorizontalChange != 0.0f)
        {
            ScrollViewer sv = null;
            Type t = DataGrid1.GetType();
            try
            {
                sv = t.InvokeMember("InternalScrollHost", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetProperty, null, DataGrid2, null) as ScrollViewer;
                sv.ScrollToHorizontalOffset(e.HorizontalOffset);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
    }
share|improve this answer
+1 for reflection hack. used this in conjunction with the codeproject article to achieve a working attached property implementation for WPF Datagrid – Dr. ABT Feb 7 '12 at 13:23

The Scroll Synchronization project doesn't work for Datagrid because it doesn't expose ScrollToVerticalOffset

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.