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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.ComponentModel;
using NAudio.Wave;
namespace FLY.ControlLibrary
{
/// <summary>
/// Window_WarningTip.xaml 的交互逻辑
/// </summary>
public partial class Window_WarningTip : Window, INotifyPropertyChanged
{
static Window_WarningTip Current = null;
static Action StopEvent = null;
static Action OKEvent = null;
static int WarningTipID = 0;
private WaveOutEvent outputDevice;
private AudioFileReader audioFile;
private bool isRunning;
System.Windows.Threading.DispatcherTimer timer;
/// <summary>
/// 持续时间
/// </summary>
public TimeSpan Duration = TimeSpan.MinValue;
/// <summary>
/// 警告信息
/// </summary>
public string Message { get; set; } = "警告";
/// <summary>
/// 确认键 显示内容
/// </summary>
public string OKContent { get; set; } = "确定";
public Window_WarningTip()
{
InitializeComponent();
this.DataContext = this;
timer = new System.Windows.Threading.DispatcherTimer();
timer.Tick += new EventHandler(timer1_Tick);
}
void timer1_Tick(object sender, EventArgs e)
{
timer.Stop();
//到时间了,把音乐关闭
stopMusic();
//把界面关闭
Close();
Current = null;
//触发事件
StopEvent?.Invoke();
}
/// <summary>
/// 关闭
/// </summary>
public static void Stop()
{
Current?.timer1_Tick(null,null);
}
/// <summary>
/// 关闭
/// </summary>
/// <param name="id"></param>
public static void Stop(int id)
{
if (WarningTipID == id)
Stop();
}
void stopMusic()
{
isRunning = false;
outputDevice?.Stop();
outputDevice?.Dispose();
outputDevice = null;
audioFile?.Dispose();
audioFile = null;
}
void playMusic(string musicpath)
{
try
{
audioFile = new AudioFileReader(musicpath);
}
catch
{
//音乐无法启动
return;
}
outputDevice = new WaveOutEvent();
outputDevice.Init(audioFile);
outputDevice.PlaybackStopped += (s, e) =>
{
if (isRunning)
{
//重新播放!!
if (audioFile == null)
{
stopMusic();
return;
}
audioFile.Position = 0;
outputDevice.Play();
}
};
outputDevice.Play();
}
void Play(string musicpath)
{
if (musicpath == null)
{
//没有音乐,关闭
stopMusic();
}
else if (audioFile == null)
{
playMusic(musicpath);
}
else if (audioFile.FileName != musicpath)
{
stopMusic();
playMusic(musicpath);
}
isRunning = true;
if ((Duration == TimeSpan.MaxValue) || (Duration == TimeSpan.MinValue))
{
//永远打开
timer.Stop();
}
else
{
timer.Interval = Duration;
timer.Start();
}
}
/// <summary>
/// 显示报警提示
/// </summary>
/// <param name="title">标题</param>
/// <param name="message">内容</param>
/// <returns>ID</returns>
public static int Show(string title, string message)
{
return Show(title, message, TimeSpan.MaxValue);
}
/// <summary>
/// 显示报警提示
/// </summary>
/// <param name="title">标题</param>
/// <param name="message">内容</param>
/// <param name="duration">显示的时间</param>
/// <returns></returns>
public static int Show(string title, string message, TimeSpan duration)
{
return Show(title, message, duration, null);
}
/// <summary>
/// 显示报警提示
/// </summary>
/// <param name="title">标题</param>
/// <param name="message">内容</param>
/// <param name="duration">显示的时间</param>
/// <param name="musicpath">音乐路径</param>
/// <returns>ID</returns>
public static int Show(string title, string message, TimeSpan duration, string musicpath)
{
return Show(title, message, duration, musicpath, null);
}
/// <summary>
/// 显示报警提示
/// </summary>
/// <param name="title">标题</param>
/// <param name="message">内容</param>
/// <param name="duration">显示的时间</param>
/// <param name="musicpath">音乐路径</param>
/// <param name="stophandler">关闭事件 回调函数</param>
/// <returns>ID</returns>
public static int Show(string title, string message, TimeSpan duration, string musicpath, Action stophandler)
{
return Show(title, message, duration, musicpath, stophandler, "OK", null);
}
/// <summary>
/// 显示报警提示
/// </summary>
/// <param name="title">标题</param>
/// <param name="message">内容</param>
/// <param name="duration">显示的时间</param>
/// <param name="musicpath">音乐路径</param>
/// <param name="stophandler">关闭事件 回调函数</param>
/// <param name="okcontent">确定按键 显示字符串</param>
/// <param name="okhandler">确定事件 回调函数</param>
/// <returns>ID</returns>
public static int Show(string title, string message, TimeSpan duration, string musicpath=null, Action stophandler=null, string okcontent="OK", Action okhandler=null)
{
if (Current == null)
{
Current = new Window_WarningTip();
}
Current.Title = title;
Current.Duration = duration;
Current.Message = message;
Current.OKContent = okcontent;
StopEvent = stophandler;
OKEvent = okhandler;
Current.Owner = Application.Current.MainWindow;
Current.Show();
Current.Play(musicpath);
WarningTipID++;
if (WarningTipID >= int.MaxValue-1)
WarningTipID = 0;
return WarningTipID;
}
private void button_ok_Click(object sender, RoutedEventArgs e)
{
Stop();
OKEvent?.Invoke();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
this.Width = SystemParameters.PrimaryScreenWidth;
this.Left = 0;
this.Top = (SystemParameters.PrimaryScreenHeight - this.Height) / 2;
}
#region INotifyPropertyChanged 成员
public event PropertyChangedEventHandler PropertyChanged;
#endregion
}
}