Generelle Ausnahmenanzeige

This commit is contained in:
2023-03-03 21:23:48 +01:00
parent 101ce32c06
commit 6ea4a47b98
18 changed files with 1226 additions and 1346 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace ownChat
{
public partial class ExceptionWindow
{
public ExceptionWindow(Exception exception)
{
InitializeComponent();
ExceptionViewControl.Exception = exception;
}
private void ExceptionViewControl_OnOkButtonClicked(object sender, EventArgs e)
{
Close();
}
}
}