implementing virtual mode for a datagridview that is databound
问题 A general question for advice on the implementation. I've got a collection bound to a datagridview . BindingList<Line> allLines = new BindingList<Line>(); dataGridView1.DataSource = allLines; I want to implement virtual mode because the collection could contain millions of entries ( Line objects) so I thought it may be quicker to only 'cache' or display a few entries that are needed at a time. Which is what I understand virtual mode to be for? I've looked at: http://msdn.microsoft.com/en-us