What is the bottom space on the Windows Forms design view?

317 Views Asked by At

I'm trying to learn about Windows Forms Application. Now, as I was creating a DataSet, Binding source, Table adapters. I noticed they show up on a bottom section on the design view. My question is: What is that section, and what goes in there?

3

There are 3 best solutions below

0
On BEST ANSWER

This section generally corresponds to nonvisual elements in a Form, but which are stil relevant to the Form, such as a Timer.

Since they're nonvisual, it doesn't make sense to put them in the designer with the visual elements, but they still need to be in the designer for the designer to be useful in setting their values.

0
On

The bottom part of the winforms designer is used for non-UI elements. Things that are created / generated just as fields in the class behind, and not added to the actual view.

0
On

From MSDN:

Non-visual components added to the Windows Forms Designer are placed on the Component Tray, located below the design surface, so that they are easily accessible without cluttering the visual design space.