Widow – Rev 1

Subversion Repositories:
Rev:
using System;

namespace Widow
{
    public class WindowDestroyedEventArgs : EventArgs
    {
        #region Public Enums, Properties and Fields

        public IntPtr Handle { get; set; }

        public string Name { get; set; }

        #endregion

        #region Constructors, Destructors and Finalizers

        public WindowDestroyedEventArgs()
        {
        }

        public WindowDestroyedEventArgs(string name, IntPtr handle) : this()
        {
            Name = name;
            Handle = handle;
        }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.