I have a few tabControl with several tabs on the winforms form. The problem is that the elements on them are not loaded until you open this tab yourself. Is it possible to load all of its components when starting the program?

  • they should not be loaded until the tab is active. What is the problem, that they are not loaded? Are there any data to be downloaded from the outside? Then it's time to move on to the normal architecture and load the data in model classes, and the controls just bind to the model. - rdorn

1 answer 1

In the design window of your form, select your TabControl, and in the Properties window, select TapPages (Collection), a form should open where you can edit.

collection editor

  • And what parameters need to be edited there to solve my problem? - PracticeMakesPerfect
  • @PracticeMakesPerfect lay out your example, and an example of the data you want to load. - Yury Bakharev