Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Following are two Datagrids used by me and bound to DataTable.DefaultView of an SQLDataAdapter.

 <DataGrid AutoGenerateColumns="True" Height="261" HorizontalAlignment="Left" Margin="12,215,0,0" Name="rResultGrid1" VerticalAlignment="Top" Width="399" ItemsSource="{Binding Path=LastOutput.Output1, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />

 <DataGrid AutoGenerateColumns="True"  Height="261" HorizontalAlignment="Left" Margin="471,215,0,0" Name="rResultGrid2" VerticalAlignment="Top" Width="381" ItemsSource="{Binding Path=LastOutput.Output2, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>

I want to compare the content of the above two grids and if any mismatch I would like to highlight the respective filed color.

Is there a best practice to be followed here? Please help me.

share|improve this question
First of all I'd guess as a bp is relocating such loginc into the/a viewmodel and defining something like a datarow class, that contains the datatable's columns as properties plus properties for matching information. – Andreas H. Mar 11 '12 at 2:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.