I've done .Net development for awhile but I'm new to the WPF technology. What is the supposed purpose of App.xaml? Also, what type of xaml code do you usually put in it? It seems like for simple applications it could be ignore and left untouched. Is this true?
|
It is true. App.Xaml is some sort of central starting point. You CAN use it, or you CAN start your first window (it is defined in the app.xaml) manually. There are some lifetime events there centralls (like application start). |
|||
|
|
|
Now the tangent: To me, to ask about the purpose of You can’t just open a
or
The above error is simply saying that I’m trying to open a WPF Window inside of a DLL and not an
This boils down to the absence of a facility that associates WPF Window XAML with the WPF “code” (an instance). This facility is associated with WPF I’m sure Chris Sells has a whole chapter written on how WPF depends on I have shown myself a little something with this unit test:
Failing to wrap a new Window in the |
|||
|
For simple applications, it is true, it can be ignored. The major purpose for App.xaml is for holding resources (style, pens, brushes, etc.) that would would like to be available through out all of the windows in your application. |
|||
|
|
|
Storing resources that are used across the whole application. Application is the root of the logical tree. |
|||
|
|
|
It is like Global.asax if you are coming from an ASP.NET background. You can also use it to share resources throughout your application. Comes in pretty handy for resource sharing. |
|||
|
|