Mercurial > silverbladetech
view Chronosv2/source/Presentation/Windows/ActiveDesktopChangedInfo.cs @ 19:09d18d6e5f40
airport work
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Thu, 15 Mar 2012 06:59:15 +0000 |
parents | 443821e55f06 |
children |
line wrap: on
line source
using Chronos.Presentation.Core.VirtualDesktops; namespace Chronos.Presentation.Windows { /// <summary> /// Actived desktop changed payload /// </summary> public sealed class ActiveDesktopChangedInfo { #region · Fields · private IVirtualDesktop newActiveDesktop; #endregion #region · Properties · /// <summary> /// Gets the new active desktop. /// </summary> /// <value>The new active desktop.</value> public IVirtualDesktop NewActiveDesktop { get { return this.newActiveDesktop; } } #endregion #region · Constructors · /// <summary> /// Initializes a new instance of the <see cref="ActiveDesktopChangedInfo"/> class. /// </summary> /// <param name="newActiveDesktop">The new active desktop.</param> public ActiveDesktopChangedInfo(IVirtualDesktop newActiveDesktop) { this.newActiveDesktop = newActiveDesktop; } #endregion } }