using System; namespace Widow { public class WindowDestroyedEventArgs : EventArgs { #region Public Enums, Properties and Fields public IntPtr Handle { get; set; } public string Title { get; set; } #endregion #region Constructors, Destructors and Finalizers public WindowDestroyedEventArgs() { } public WindowDestroyedEventArgs(string title, IntPtr handle) : this() { Title = title; Handle = handle; } #endregion } }