PC Review


Reply
Thread Tools Rate Thread

DataGridView performance

 
 
John Brown
Guest
Posts: n/a
 
      24th Nov 2006
Hi there,

Has anyone had any serious performance problems with this class. A couple of
hundred rows of data with 4 columns (everything loaded on-the-fly with no DB
involved, all simple strings, 90% under 10 characters, the rest as high as
500-600 characters, wrapping turned on) literally takes almost 3 minutes to
load on my 2.4 MHz machine (1 GB RAM with plenty to spare). Wrapping may be
the bottleneck (performance improves when I turn it off) but other than
using virtual mode, can anyone suggest a way to speed things up (or a
reliable 3rd-party control which is really something I wanted to avoid).
Thanks.


 
Reply With Quote
 
 
 
 
Marc Gravell
Guest
Posts: n/a
 
      24th Nov 2006
Looks pretty quick to me...
Try this: it invents 5000 rows of data using 4 string properties, random
length up to 600 chars; loads almost instantly on similar spec PC, even
including property notification handlers; have you got some example code?

using System;
using System.Windows.Forms;
using System.Collections.Generic;
class MyData
{
private string fieldA, fieldB, fieldC, fieldD;
private void OnEvent(EventHandler handler)
{
if (handler != null) handler(this, EventArgs.Empty);
}
public event EventHandler PropertyAChanged, PropertyBChanged,
PropertyCChanged, PropertyDChanged;
public string PropertyA
{
get { return fieldA; }
set
{
if (fieldA != value)
{
fieldA = value;
OnEvent(PropertyAChanged);
}
}
}
public string PropertyB
{
get { return fieldB; }
set
{
if (fieldB != value)
{
fieldB = value;
OnEvent(PropertyBChanged);
}
}
}
public string PropertyC
{
get { return fieldC; }
set
{
if (fieldC != value)
{
fieldC = value;
OnEvent(PropertyCChanged);
}
}
}
public string PropertyD
{
get { return fieldD; }
set
{
if (fieldD != value)
{
fieldD = value;
OnEvent(PropertyDChanged);
}
}
}
}
static class Program
{
static readonly Random rand = new Random(123456);
static string RandomString() {
int length = rand.Next(600);
char[] chars = new char[length];
for (int i = 0; i < length; i++)
{
chars[i] = (char) rand.Next(32, 122);
}
return new string(chars);
}
static void Main()
{
const int COUNT = 5000;
List<MyData> data = new List<MyData>(COUNT);
for (int i = 0; i < COUNT; i++)
{
MyData item = new MyData();
item.PropertyA = RandomString();
item.PropertyB = RandomString();
item.PropertyC = RandomString();
item.PropertyD = RandomString();
data.Add(item);
}
using(Form f = new Form())
using (DataGridView dgv = new DataGridView())
{
dgv.Dock = DockStyle.Fill;
dgv.DataSource = data;
f.Controls.Add(dgv);
Application.Run(f);
}
}
}

Marc


 
Reply With Quote
 
Marc Gravell
Guest
Posts: n/a
 
      24th Nov 2006
(note still performant if I add dgv.DefaultCellStyle.WrapMode =
DataGridViewTriState.True

Marc


 
Reply With Quote
 
John Brown
Guest
Posts: n/a
 
      24th Nov 2006
> (note still performant if I add dgv.DefaultCellStyle.WrapMode =
> DataGridViewTriState.True
>
> Marc


Thanks very much (appreciated). I'll try your sample and let you know ...


 
Reply With Quote
 
Marc Gravell
Guest
Posts: n/a
 
      24th Nov 2006
As a guess, I would imagine that the problem is that you are adding rows
while it is UI bound, so each insert needs to think about a redraw. Some
controls have a BeginUpdate / EndUpdate pair to help with this, but you
could try disabling layout - it *may*help:

dgv.SuspendLayout();
try {
// your code
} finally {
dgv.ResumeLayout();
}

Alternatively, if you are using a BindingSource, that has a SuspendBinding /
ResumeBinding, or as a last resort you could remove the data-source (from
the grid) completely while editing.

Again, I could probably help more with a code snippet *that is runnable and
demonstrates the problem*.
(Jon puts it very well: http://www.yoda.arachsys.com/csharp/complete.html)

Marc


 
Reply With Quote
 
John Brown
Guest
Posts: n/a
 
      24th Nov 2006

"John Brown" <no_spam@_nospam.com> wrote in message
news:ONyTKb%(E-Mail Removed)...
>> (note still performant if I add dgv.DefaultCellStyle.WrapMode =
>> DataGridViewTriState.True
>>
>> Marc

>
> Thanks very much (appreciated). I'll try your sample and let you know ...


Ok, it does load almost instantly now. Painting is still painfully
(unacceptably) slow however (navigating as well). I did find the original
problem though. Try setting "AutoSizeColumnsMode" to
"DataGridViewAutoSizeColumnsMode.AllCells" Now it takes forever to load.
Have you used the older "DataGrid" class. I understand it's much faster but
without all the bells and whistles. Do you have any opinion on it. Thanks.


 
Reply With Quote
 
John Brown
Guest
Posts: n/a
 
      24th Nov 2006
"Marc Gravell" <(E-Mail Removed)> wrote in message
news:uOGcch%(E-Mail Removed)...
> As a guess, I would imagine that the problem is that you are adding rows
> while it is UI bound, so each insert needs to think about a redraw. Some
> controls have a BeginUpdate / EndUpdate pair to help with this, but you
> could try disabling layout - it *may*help:
>
> dgv.SuspendLayout();
> try {
> // your code
> } finally {
> dgv.ResumeLayout();
> }
>
> Alternatively, if you are using a BindingSource, that has a SuspendBinding
> / ResumeBinding, or as a last resort you could remove the data-source
> (from the grid) completely while editing.
>
> Again, I could probably help more with a code snippet *that is runnable
> and demonstrates the problem*.
> (Jon puts it very well: http://www.yoda.arachsys.com/csharp/complete.html)


Already investigated "SuspendLayout()" with no success. It's starting to
look like there's little I can do other than relying on virtual mode. I also
found this (where MSFT provides some possible remedies but basicallly
acknowledges the "lower performance" and perhaps a "fast painting mod" for a
future release).

http://connect.microsoft.com/VisualS...dbackID=117093


 
Reply With Quote
 
Marc Gravell
Guest
Posts: n/a
 
      24th Nov 2006
Interestingly, it appears to take about 3-4 times as long if it does this in
the inital load. I'm guessing due to resizing fonts etc requiring a re-draw.

Try the following, which loads the data when you first drag the mouse over
the grid - it loads in about 5 seconds on my poor-mans laptop (1.8, 512) -
so should be better for you. Obviously you might want to put this in a small
timer or something rather than rely on user intervention (I'm guessing that
using Load would still cause the redraws; haven't tested though)

Main difference is where the data gets initialised (although the important
bit really is when the bindings get set against the dgv, or in this case,
reset):

static void Main()
{
const int COUNT = 5000;
bool loaded = false;
BindingList<MyData> data = new BindingList<MyData>();
using(Form f = new Form())
using (DataGridView dgv = new DataGridView())
{
dgv.MouseEnter += delegate
{
if (loaded) return;
data.RaiseListChangedEvents = false;
try
{
data.Clear();
for (int i = 0; i < COUNT; i++)
{
MyData item = new MyData();
item.PropertyA = RandomString();
item.PropertyB = RandomString();
item.PropertyC = RandomString();
item.PropertyD = RandomString();
data.Add(item);
}
}
finally
{
data.RaiseListChangedEvents = true;
data.ResetBindings();
loaded = true;
}
};
dgv.AutoSizeColumnsMode =
DataGridViewAutoSizeColumnsMode.AllCells;
dgv.DataSource = data;
dgv.DefaultCellStyle.WrapMode = DataGridViewTriState.True;
dgv.Dock = DockStyle.Fill;
f.Controls.Add(dgv);
Application.Run(f);
}
}


 
Reply With Quote
 
John Brown
Guest
Posts: n/a
 
      24th Nov 2006
"Marc Gravell" <(E-Mail Removed)> wrote in message
news:%23EKvwx%(E-Mail Removed)...
> Interestingly, it appears to take about 3-4 times as long if it does this
> in the inital load. I'm guessing due to resizing fonts etc requiring a
> re-draw.
>
> Try the following, which loads the data when you first drag the mouse over
> the grid - it loads in about 5 seconds on my poor-mans laptop (1.8, 512) -
> so should be better for you. Obviously you might want to put this in a
> small timer or something rather than rely on user intervention (I'm
> guessing that using Load would still cause the redraws; haven't tested
> though)
>
> Main difference is where the data gets initialised (although the important
> bit really is when the bindings get set against the dgv, or in this case,
> reset):


It still took several minutes to render itself but that's better than
before. Something's obviously wrong however given that it returns in 5
seconds on your laptop. What I'll have to do is look at your code in greater
detail (BindingList, etc.) and combined with other possible remedies at
MSFT's site (cited in my other post), maybe I can handle painting/drawing on
a page-by-page basis (without turning to virtual mode). With any luck I can
improve things after some experimentation. If worse comes to worse however,
do you have any experience with the "DataGrid" or some other 3rd-party
control. I don't need anything flashy but functional control is important
(the grid's look should be clean and modern - not outdated - but my needs
are mostly utilitarian). Thanks for all your help (truly appreciated)


 
Reply With Quote
 
Marc Gravell
Guest
Posts: n/a
 
      24th Nov 2006
You're welcome... and if you find what is causing the poor performance,
please let us know.
Alternatively, if you can reproduce it in a standalone example (even if
you can't explain it), then please feel free to post it - I know I
would be interested in having a look, and I'm sure it would pique a few
others too...

Marc

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Why performance of DataGridView is SOO BAD? How to fix it? Rich P Microsoft VB .NET 0 19th Dec 2008 05:37 PM
Re: Why performance of DataGridView is SOO BAD? How to fix it? Rich P Microsoft VB .NET 0 17th Dec 2008 04:12 PM
DataGridView performance John Brown Microsoft Dot NET Framework 12 24th Oct 2008 03:28 PM
DataGridView performance John Brown Microsoft C# .NET 9 24th Nov 2006 10:46 PM
C# 2.0 DataGridView Performance orekinbck@yahoo.com.au Microsoft C# .NET 0 15th Aug 2005 10:25 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:48 AM.