Statistics
| Branch: | Revision:

root / trunk / NotifyIconWpf / BalloonIcon.cs @ 049333d2

History | View | Annotate | Download (1.5 kB)

1
// hardcodet.net NotifyIcon for WPF
2
// Copyright (c) 2009 Philipp Sumi
3
// Contact and Information: http://www.hardcodet.net
4
//
5
// This library is free software; you can redistribute it and/or
6
// modify it under the terms of the Code Project Open License (CPOL);
7
// either version 1.0 of the License, or (at your option) any later
8
// version.
9
// 
10
// The above copyright notice and this permission notice shall be
11
// included in all copies or substantial portions of the Software.
12
// 
13
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
17
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20
// OTHER DEALINGS IN THE SOFTWARE.
21
//
22
// THIS COPYRIGHT NOTICE MAY NOT BE REMOVED FROM THIS FILE
23

    
24

    
25
namespace Hardcodet.Wpf.TaskbarNotification
26
{
27
  ///<summary>
28
  /// Supported icons for the tray's balloon messages.
29
  ///</summary>
30
  public enum BalloonIcon
31
  {
32
    /// <summary>
33
    /// The balloon message is displayed without an icon.
34
    /// </summary>
35
    None,
36
    /// <summary>
37
    /// An information is displayed.
38
    /// </summary>
39
    Info,
40
    /// <summary>
41
    /// A warning is displayed.
42
    /// </summary>
43
    Warning,
44
    /// <summary>
45
    /// An error is displayed.
46
    /// </summary>
47
    Error
48
  }
49
}