Is there any way to know when a Form is fully loaded and drawn? At first I
thought that at the end of the Load Form event, all controls were rendered to
the display.

I found this to be not true. Is there a way for me to determine when its
fully drawn?

I am using Visual Studio 2005 for developing Pocket PC applications.

Thanks in advance,

- Craig

Re: When are Forms is Fully Drawn? by ctacke/>

ctacke/>
Tue Sep 19 14:37:31 CDT 2006

You could override OnPaint, call the base and then at that point drawing is
done.


--
Chris Tacke
OpenNETCF Consulting
Managed Code in the Embedded World
www.opennetcf.com
--


"Craig" <Craig@discussions.microsoft.com> wrote in message
news:E9E36CB1-4B59-47C6-9799-49D5A643F063@microsoft.com...
> Is there any way to know when a Form is fully loaded and drawn? At first
> I
> thought that at the end of the Load Form event, all controls were rendered
> to
> the display.
>
> I found this to be not true. Is there a way for me to determine when its
> fully drawn?
>
> I am using Visual Studio 2005 for developing Pocket PC applications.
>
> Thanks in advance,
>
> - Craig