1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
using System;
using System.Collections;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Threading;
namespace Notifications.Wpf.Controls
{
public class NotificationArea : Control
{
public NotificationPosition Position
{
get { return (NotificationPosition)GetValue(PositionProperty); }
set { SetValue(PositionProperty, value); }
}
// Using a DependencyProperty as the backing store for Position. This enables animation, styling, binding, etc...
public static readonly DependencyProperty PositionProperty =
DependencyProperty.Register("Position", typeof(NotificationPosition), typeof(NotificationArea), new PropertyMetadata(NotificationPosition.BottomRight));
public int MaxItems
{
get { return (int)GetValue(MaxItemsProperty); }
set { SetValue(MaxItemsProperty, value); }
}
public static readonly DependencyProperty MaxItemsProperty =
DependencyProperty.Register("MaxItems", typeof(int), typeof(NotificationArea), new PropertyMetadata(int.MaxValue));
private IList _items;
public NotificationArea()
{
NotificationManager.AddArea(this);
}
static NotificationArea()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(NotificationArea),
new FrameworkPropertyMetadata(typeof(NotificationArea)));
}
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
var itemsControl = GetTemplateChild("PART_Items") as Panel;
_items = itemsControl?.Children;
}
#if NET40
public void Show(object content, TimeSpan expirationTime, Action onClick, Action onClose)
#else
public async void Show(object content, TimeSpan expirationTime, Action onClick, Action onClose)
#endif
{
var notification = new Notification
{
Content = content
};
notification.MouseLeftButtonDown += (sender, args) =>
{
if (onClick != null)
{
onClick.Invoke();
(sender as Notification)?.Close();
}
};
notification.NotificationClosed += (sender, args) => onClose?.Invoke();
notification.NotificationClosed += OnNotificationClosed;
if (!IsLoaded)
{
return;
}
var w = Window.GetWindow(this);
var x = PresentationSource.FromVisual(w);
if (x == null)
{
return;
}
lock (_items)
{
_items.Add(notification);
if (_items.OfType<Notification>().Count(i => !i.IsClosing) > MaxItems)
{
_items.OfType<Notification>().First(i => !i.IsClosing).Close();
}
}
#if NET40
DelayExecute(expirationTime, () =>
{
#else
if (expirationTime == TimeSpan.MaxValue)
{
return;
}
await Task.Delay(expirationTime);
#endif
notification.Close();
#if NET40
});
#endif
}
private void OnNotificationClosed(object sender, RoutedEventArgs routedEventArgs)
{
var notification = sender as Notification;
_items.Remove(notification);
}
#if NET40
private static void DelayExecute(TimeSpan delay, Action actionToExecute)
{
if (actionToExecute != null)
{
var timer = new DispatcherTimer
{
Interval = delay
};
timer.Tick += (sender, args) =>
{
timer.Stop();
actionToExecute();
};
timer.Start();
}
}
#endif
}
public enum NotificationPosition
{
TopLeft,
TopRight,
BottomLeft,
BottomRight
}
}
|