Home › Forums › WinForms controls › Xceed Grid for WinForms › Trace population › Reply To: Trace population
You can use a profiler, like ANTS Profiler. It shows you which methods are called how many times, and how long it takes.
Tip: Always put your population code between GridControl.BeginInit and GridControl.EndInit, like this:<code>GridControl1.BeginInit();
GridControl1.DataSource = DataSet1;
GridControl1.DataMember = “Table1”;
GridControl1.EndInit();</code>
Imported from legacy forums. Posted by Tommy (had 2880 views)