Files
Chat/PrototypChat/ExceptionWindow.xaml.cs

19 lines
386 B
C#
Raw Normal View History

2023-03-03 21:23:48 +01:00
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();
}
}
}