using System.Configuration; using System.Data; using System.Windows; namespace template { /// /// Interaction logic for App.xaml /// public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); var mainWindow = new MainWindow(e); mainWindow.Show(); } } }