up vote 32 down vote favorite
8
share [g+] share [fb]

What does InitializeComponent() do, and how does it work? (WPF)

In general first, but I would especially be interested to know the gory details of order of construction, and what happens when there are AttachedProperties.

link|improve this question

1  
Thanks, I think these are pretty good answers below! Nobody mentioned the AttachedProperties exactly, but now I know that any AttachedProperties in Xaml are just created as part of the Xaml parsing, so they don't really deserve a special mention. – Tim Lovell-Smith Oct 21 '09 at 17:13
feedback

2 Answers

up vote 32 down vote accepted

The call to InitializeComponent() (which is usually called in the default constructor of at least Window and UserControls) is actually a method call to the partial class of the control (rather than a call up the object hierarchy as I first expected).

This method locates a URI to the XAML for the Window/UserControl that is loading, and passes it to the System.Windows.Application.LoadComponent() static method. LoadComponent() loads the XAML file that is located at the passed in URI, and converts it to an instance of the object that is specified by the root element of the XAML file.

In more detail, LoadComponent creates and instance of the XamlParser, and builds a tree of the XAML. Each node is parsed by the XamlParser.ProcessXamlNode(). This gets passed to the BamlRecordWriter class. Sometime after this I get a bit lost in how the BAML is converted to objects, but this may be enough to help you on the path to enlightenment.

Note: Interestingly, the InitializeComponent is an method on the System.Windows.Markup.IComponentConnector interface, of which Window/UserControls implement in the partial generated class.

Hope this helps!

link|improve this answer
feedback

Looking at the code always helps too. That is, you can actually take a look at the generated partial class (that calls LoadComponent) by doing the following:

  1. Go to the Solution Explorer pane in the Visual Studio solution that you are interested in.
  2. There is a button in the tool bar of the Solution Explorer titled 'Show All Files'. Toggle that button.
  3. Now, expand the obj folder and then the Debug or Release folder (or whatever configuration you are building) and you will see a file titled YourClass.g.cs.

The YourClass.g.cs ... is the code for generated partial class. Again, if you open that up you can see the InitializeComponent method and how it calls LoadComponent ... and much more.

link|improve this answer
3  
Note that you can do this in one step by right clicking the method call in the constructor and selecting "Go to Definition". – Brad Leach Oct 29 '08 at 19:30
Ah, that's right ... forgot about that. Much easier that way. Well, at least you know how it is included in the project. Grin. – cplotts Oct 29 '08 at 23:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.