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(); } } }