On Jun 19, 10:01 am, terv...@gmail.com wrote:
> > ((System.ComponentModel.ISupportInitialize)(this.myGrid)).BeginInit();
> > ((System.ComponentModel.ISupportInitialize)(this.myGrid)).EndInit();
[quoted text clipped - 7 lines]
> regards,
> Ralf ter Veer
Hi,
I could not find any solution yet.
But until I get the correct solution, i made a workaround.
I implemented the ISupportInitialize interface with empty methods.
public class DataGridEx : DataGrid, ISupportInitialize
{
#region ISupportInitialize Members
public void BeginInit()
{
}
public void EndInit()
{
}
#endregion
}
You make this workaround until we get correct solution.
Thanks,
Jayesh Modha