C# Windows Forms: I was creating an test application using visual studio, i dragged a button on the form and created a an button_click event, when i debugged my application i found that "button" displayed on the form, even though i have not added my button to the form using "this.Controls.Add(button)". I have also checked the InitializeComponent() method under "filename.Designer.cs", there also "this.Controls.Add(button)" line was missing.
My doubt is: when debugged how the Control(button) automatically added to the form, without "this.Controls.Add(button)" instruction.
Thanks.