Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
380
Need to ignore updates to Rows that are not visible
posted

The basic situation is that I have a grid with 10k to 50k.  Each of these rows has at least 4 columns that are being updated on a continous basis.  In the profiler this is causing a huge performance hit, and I have narrowed it down to updating the visuals ( WPF ).   What I would like to do is wait to update those rows that are not visible.   To do that I need to know when a row is visible.  For example if there was an event like OnRowVisible   , then I could mark each RowViewModel with a flag .

Suggestions helpful