Mercurial > silverbladetech
diff SilverlightGlimpse/SilverFlow.Controls/Enums/ResizeAnchor.cs @ 63:536498832a79
Latest version before changing bindings to Listbox
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sun, 22 Apr 2012 13:33:42 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightGlimpse/SilverFlow.Controls/Enums/ResizeAnchor.cs Sun Apr 22 13:33:42 2012 +0100 @@ -0,0 +1,19 @@ +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 + } +}