Files
Chat/PrototypChat/ExceptionWindow.xaml.cs

20 lines
387 B
C#
Raw Permalink Normal View History

2023-03-03 21:23:48 +01:00
using System;
namespace ownChat
{
public partial class ExceptionWindow
{
public ExceptionWindow(Exception exception)
{
InitializeComponent();
2023-06-28 19:04:03 +02:00
2023-03-03 21:23:48 +01:00
ExceptionViewControl.Exception = exception;
}
private void ExceptionViewControl_OnOkButtonClicked(object sender, EventArgs e)
{
Close();
}
}
}