Mercurial > silverbladetech
comparison 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 |
comparison
equal
deleted
inserted
replaced
62:810116cd6b8e | 63:536498832a79 |
---|---|
1 namespace SilverFlow.Controls.Enums | |
2 { | |
3 /// <summary> | |
4 /// Defines window's border or a corner where the user | |
5 /// clicked the mouse to start resizing. | |
6 /// </summary> | |
7 public enum ResizeAnchor | |
8 { | |
9 None = 0, | |
10 TopLeft = 1, | |
11 Top = 2, | |
12 TopRight = 3, | |
13 Right = 4, | |
14 BottomRight = 5, | |
15 Bottom = 6, | |
16 BottomLeft = 7, | |
17 Left = 9 | |
18 } | |
19 } |