Performance. Practical Recommendations
Even the best performing component can be hindered by incorrect use. Below we provide practical recommendations on what should be used or avoided in application programming. Following the tips below you will be able to create applications with the same efficiency as this demo application. We also provide source codes for this example to show how easy it is.
It is supposed that programmers already know general principles of application design. Nevertheless, we shall provide some useful links for better understanding of .Net environment and tools for writing managed code: Writing Faster Managed Code: Know What Things Cost
It is necessary to pay attention to grid characteristics in different working modes, to evaluate data volume to be displayed and to find a relevant chart for better understanding of grid use.
Have only one message loop per application. Don’t create grids in different threads.
Let us assume that the computer resources …