Widow – Rev 1

Subversion Repositories:
Rev:
using System;

namespace Widow
{
    public class DesktopWindow
    {
        #region Public Enums, Properties and Fields

        public IntPtr Handle { get; set; }

        public string Title { get; set; }

        #endregion

        #region Constructors, Destructors and Finalizers

        public DesktopWindow(IntPtr handle, string title)
        {
            Handle = handle;
            Title = title;
        }

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.