1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-07-22 23:04:33 +02:00
Backup-Essentials/BackupEssentials/App.xaml.cs

17 lines
451 B
C#

using System.Windows;
using System.Windows.Threading;
namespace BackupEssentials{
public partial class App : Application{
private void StartApp(object sender, StartupEventArgs args){
MainWindow window = new MainWindow();
// TODO handle args
window.Show();
}
private void HandleException(object sender, DispatcherUnhandledExceptionEventArgs e){
// TODO
}
}
}