comparison SilverlightGlimpse/SilverFlow.Controls/Enums/WindowAction.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 mouse action.
5 /// </summary>
6 internal enum WindowAction
7 {
8 /// <summary>
9 /// Default
10 /// </summary>
11 None = 0,
12
13 /// <summary>
14 /// Moving the window
15 /// </summary>
16 Move = 1,
17
18 /// <summary>
19 /// Resizing the window
20 /// </summary>
21 Resize = 2
22 }
23 }