I'm creating a WPF application in VB.Net. I am trying to decide where my startup code should go. I seem to have two choices:
- Leave the "Enable Application Framework" box checked and choose a "Startup URI" from among the application's windows.
- Uncheck "Enable Application Framework" and choose to startup in my own Sub Main.
What are the implications of enabling or disabling the application framework, and why does the application framework restrict my choice of startup options?
-TC