Last active
December 27, 2015 18:49
-
-
Save DjebbZ/7372312 to your computer and use it in GitHub Desktop.
Injection de dépendance en C# pour le blog de Palo-IT
This file contains 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 partial class App : Application | |
{ | |
protected override void OnStartup(StartupEventArgs e) | |
{ | |
base.OnStartup(e); | |
//Mettez ici le code pour instancier votre conteneur, puis instancier votre fenêtre principale via ce dernier, suivi d’un Show() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment