I just started making a wizard application. I have used a header-less tabcontrol to build different pages of that wizard.
I have read that having too many controls can slow the rendering process specially in form resizing. For example in this post 225 button slows the rendering. I have many controls (hundreds of them) but they are not all shown because they are distributed in different tab and only one tab is shown which only contains like 20 controls.
I am afraid that after finishing my application, it will be a slow piece of garbage. Is C# smart enough to render only shown controls? or should I choose a different approach to create my wizard?