view SilverlightGlimpse/SilverFlow.Controls/Enums/WindowAction.cs @ 64:ba89e36631bc

Latest version
author Steven Hollidge <stevenhollidge@hotmail.com>
date Sun, 22 Apr 2012 14:20:52 +0100
parents 536498832a79
children
line wrap: on
line source

namespace SilverFlow.Controls.Enums
{
    /// <summary>
    /// Defines mouse action.
    /// </summary>
    internal enum WindowAction
    {
        /// <summary>
        /// Default
        /// </summary>
        None = 0,

        /// <summary>
        /// Moving the window
        /// </summary>
        Move = 1,

        /// <summary>
        /// Resizing the window
        /// </summary>
        Resize = 2
    }
}