mirror of
https://github.com/DarthAffe/RGBSyncPlus
synced 2025-12-13 01:18:30 +00:00
17 lines
547 B
C#
17 lines
547 B
C#
using System;
|
|
using RGBSyncPlus.Controls;
|
|
|
|
namespace RGBSyncPlus.UI
|
|
{
|
|
public partial class ConfigurationWindow : BlurredDecorationWindow
|
|
{
|
|
public ConfigurationWindow() => InitializeComponent();
|
|
|
|
//DarthAffe 07.02.2018: This prevents the applicaiton from not shutting down and crashing afterwards if 'close' is selected in the taskbar-context-menu
|
|
private void ConfigurationWindow_OnClosed(object sender, EventArgs e)
|
|
{
|
|
ApplicationManager.Instance.ExitCommand.Execute(null);
|
|
}
|
|
}
|
|
}
|