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.
|
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.
| |||||
feedback
|
|
The call to This method locates a URI to the XAML for the Window/UserControl that is loading, and passes it to the In more detail, Note: Interestingly, the Hope this helps! | |||
|
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:
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. | |||||||
feedback
|