Mercurial > silverbladetech
view SilverlightGlimpse/SilverFlow.Controls/Enums/ResizeAnchor.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 window's border or a corner where the user /// clicked the mouse to start resizing. /// </summary> public enum ResizeAnchor { None = 0, TopLeft = 1, Top = 2, TopRight = 3, Right = 4, BottomRight = 5, Bottom = 6, BottomLeft = 7, Left = 9 } }