Maximum number of Controls in one Form?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello People

Im designing on a complex form project. I will be using more number of
Controls (panels, textboxes, labels..)
The question is.. does every Form have a limit of Controls? I mean the max.
controls could be placed in one Form? is there any restriction?
 
Each control that you place on a form allocates some managed and unmanaged
memory resource. You are limited in amount of program memory that you have at
the moment when your application runs on Windows CE devices, so you should
avoid using a "lot" of controls on your forms. You can also try to re-use
them.
 
Back
Top