Currently I have a code that refreshes me MdiCildren screens, the fact is that by doing this visually it is a bit ugly until it ends, so I need to know if it is possible and how to do not paint anything on the screen until you arrive a point and that the screen is refrected at that time
mixing code and pseudocodigo would be something like that
noRefrescar();
foreach( Form f in this.MdiChildren)
{
f.WindowState = FormWindowState.Maximized;
}
Refrescar();
Thank you.