Created
November 10, 2011 00:23
-
-
Save shiftkey/1353665 to your computer and use it in GitHub Desktop.
Registering the bootstrapper in a Silverlight Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public App() | |
{ | |
Startup += Application_Startup; | |
Exit += Application_Exit; | |
UnhandledException += Application_UnhandledException; | |
var bootstrapper = new AppBootstrapper(); | |
Resources.Add("Bootstrapper", bootstrapper); | |
InitializeComponent(); | |
} | |
private void Application_Startup(object sender, StartupEventArgs e) | |
{ | |
// this.RootVisual = new MainPage(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment