mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-07-22 23:04:33 +02:00
17 lines
451 B
C#
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
|
|
}
|
|
}
|
|
}
|