views:

278

answers:

1

In my WPF application I have two ListView with identical columns. I want to bind the column width of the ListViews to each other. When I resize a column in one ListView I want the matching column in the other ListView to have the same width.

It would be great if there would be no "Master"-ListView. Each ListView should update the other one.

+1  A: 

http://www.wpftutorial.net/GridLayout.html

The section "How to share the width of a column over multiple grids" should answer your question.

HTH, Anderson

Anderson Imes