Very Simple definition of InitializeComponent(); Method

前端 未结 2 1548

I have been working through the Head First C# book and have used the InitializeComponent(); method several times.

An example of this is on the Party Planner exercise

相关标签:
2条回答
  • 2020-11-28 14:17

    InitializeComponent is a method which is used to initialize your form. It has nothing to do with your DinnerParty class.

    So, it might be setting up things like the buttons, labels, event handlers, and so on on your User Interface.

    Here's a more in depth explanation. What does InitializeComponent() do, and how does it work in WPF?

    0 讨论(0)
  • 2020-11-28 14:25

    InitializeComponent is a method automatically written for you by the Form Designer when you create/change your forms.

    Every Forms file (e.g. Form1.cs) has a designer file (e.g. Form1.designer.cs) that contains the InitializeComponent method, the override of the generic Form.Dispose, and the declaration of all of your User Interface objects like buttons, textboxes, labels and the Form itself.

    The InitializeComponent method contains the code that creates and initializes the user interface objects dragged on the form surface with the values provided by you (the programmer) using the Property Grid of the Form Designer. Due to this fact do not ever try to interact with the form or the controls before the call to InitializeComponent.
    Also, you will find here, the plumbing required to link the controls and form events to the specific event handlers you have written to respond to the user actions.

    The code contained in Form1.cs and the Form1.Designer.cs files is part of the same class thanks to the concept of partial classes that could keep two or more files of your code together like a single block of code.

    Of course, due to the high numbers of changes executed by the Form Designer, it is a really good advice to not try to modify manually this method, while, sometime, I find useful to add code to the Dispose method with the purpose to destroy some unmanaged objects created in the form lifetime.

    0 讨论(0)
提交回复
热议问题