The purpose of this article is to provide some general programming practice guidelines and troubleshooting tips to improve performance when using the UltraWinGrid control. Not all of the tips provided here will apply to every application, but it should help with the most common performance issues a developer is likely to encounter.
If you are concerned about reducing the amount of memory used by the grid, then there are several important things you can do to reduce it.
The grid does not create UltraGridCell objects for every row of data. Cells are only created as neccessary. So whenever possible, you should avoid accessed a cell. For example, suppose your code is using the InitializeRow event of the grid in order to calculate a total. For example:
}
This code references three cells in each row of the grid, thus creating a lot of objects which are potentially unneccessary. This can be avoided using methods on the row to deal with cell values, rather than the cell objects themselves. Like so:
By using the GetCellValue method, we can eliminate 2 cells per row in this example and save memory.
Another common use for the InitializeRow event is to apply an appearance to a cell based on the Value of that cell. Applying an appearance to a cell requires getting a reference to the UltraGridCell, so that is unavoidable. But you can save memory by re-using the same appearance object for multiple cells. Suppose, for example, that you want to change the ForeColor of a cell to red for negative numbers and black for positive numbers. You might do something like this:
This code will create a cell for every row. That is unavoidable, since the cell must be created in order to have an Appearance. The bigger problem here is that the Appearance property on the cell is lazily created. That means that we are not only creating a cell for each row, but a new Appearance object for each row. And since there are only two possible colors, we end up creating a large number of identical appearance objects.
A better way to do this is to create the Appearances we need up front and then re-use the same appearance wherever it is needed.
Another benefit to this approach is that you can change the appearance everywhere en masse. For example, suppose your users want to use Green instead of Black for positive appearances. You could, at run-time, set the ForeColor of the “Positive” Appearance object, and every cell in the grid that was using that appearance would update automatically.
Hi J,
jammerms said:if my column style is set to something like Button or DropDownList, should I leave the CellDisplayStyle to the default Editor?
It's hard to say with any certaintly. It depends what other features you are using, and I'm not completely sure how CellDisplayStyle will affect a button cell, if at all. But it should be easy enough to test it out and see what happens. Any problems that might occur should be immediately obvious.
jammerms said:Also, if a column is hidden in Initialize_Layout, should I still set its CellDisplayStyle for a performance benefit?
I can't see how it could hurt to do this, but I it's not neccessary. The idea behind CellDisplayStyle is that it saves on the creation of certain UIElements. No UIElements are created for hidden cells, anyway. So CellDisplayStyle will have no effect.
Hi Mike
It is very usefull article. Thanks for posting.
Faiz Ahmad
Simply the best article in ultrawingrid world. Please include this article infragistics help as well. So that future users of infragistics may read it locally.
Regards
Asad Naeem
Hi Mike,
This article is really helpfull for the develper whose are working on desktop application using Ultrawingrid.