A
alex n
hello.
i manipulate a dataview
(updating and thus filtering a large amount of rows)
and the datagrid bound to the dataview
slows down this process much by adjusting its scroll bars
and maybe trying to redraw itself.
ok, Suspend/ResumeLayout doesn't help.
grd.DataSource = null;
// update & filter here
grd.DataSource = dataview;
works but scrollbar positions are lost
after rebinding.
maybe that's no problem - i'll try
to store/restore scrollbars with windows scrollbar api.
but maybe there's some pure NET way to get
the DataGrid just taking rest while DataView is busy
with the stuff?
alex.
i manipulate a dataview
(updating and thus filtering a large amount of rows)
and the datagrid bound to the dataview
slows down this process much by adjusting its scroll bars
and maybe trying to redraw itself.
ok, Suspend/ResumeLayout doesn't help.
grd.DataSource = null;
// update & filter here
grd.DataSource = dataview;
works but scrollbar positions are lost
after rebinding.
maybe that's no problem - i'll try
to store/restore scrollbars with windows scrollbar api.
but maybe there's some pure NET way to get
the DataGrid just taking rest while DataView is busy
with the stuff?
alex.