Window_WarningTip.xaml.cs 7.53 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
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;
14
using NAudio.Wave;
潘栩锋's avatar
潘栩锋 committed
15 16 17 18 19 20 21 22 23

namespace FLY.ControlLibrary
{
    /// <summary>
    /// Window_WarningTip.xaml 的交互逻辑
    /// </summary>
    public partial class Window_WarningTip : Window, INotifyPropertyChanged
    {
        static Window_WarningTip Current = null;
24
        static Action StopEvent = null;
潘栩锋's avatar
潘栩锋 committed
25 26 27
        static Action OKEvent = null;
        static int WarningTipID = 0;

28 29 30 31
        private WaveOutEvent outputDevice;
        private AudioFileReader audioFile;
        private bool isRunning;

潘栩锋's avatar
潘栩锋 committed
32
        System.Windows.Threading.DispatcherTimer timer;
33 34 35
        /// <summary>
        /// 持续时间
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
36
        public TimeSpan Duration = TimeSpan.MinValue;
37 38 39 40 41 42 43 44 45 46 47

        /// <summary>
        /// 警告信息
        /// </summary>
        public string Message { get; set; } = "警告";

        /// <summary>
        /// 确认键 显示内容
        /// </summary>
        public string OKContent { get; set; } = "确定";

48

潘栩锋's avatar
潘栩锋 committed
49 50 51 52 53 54 55 56 57
        public Window_WarningTip()
        {
            InitializeComponent();
            this.DataContext = this;

            timer = new System.Windows.Threading.DispatcherTimer();

            timer.Tick += new EventHandler(timer1_Tick);
        }
58

潘栩锋's avatar
潘栩锋 committed
59 60 61 62
        void timer1_Tick(object sender, EventArgs e)
        {
            timer.Stop();

63 64 65 66 67
            //到时间了,把音乐关闭
            stopMusic();

            //把界面关闭
            Close();
潘栩锋's avatar
潘栩锋 committed
68
            Current = null;
69 70 71

            //触发事件
            StopEvent?.Invoke();
潘栩锋's avatar
潘栩锋 committed
72 73 74 75
        }
        /// <summary>
        /// 关闭 
        /// </summary>
76
        public static void Stop()
潘栩锋's avatar
潘栩锋 committed
77
        {
78
            Current?.timer1_Tick(null, null);
潘栩锋's avatar
潘栩锋 committed
79 80 81 82 83
        }
        /// <summary>
        /// 关闭 
        /// </summary>
        /// <param name="id"></param>
84
        public static void Stop(int id)
潘栩锋's avatar
潘栩锋 committed
85 86 87 88 89
        {
            if (WarningTipID == id)
                Stop();
        }

90
        void stopMusic()
潘栩锋's avatar
潘栩锋 committed
91
        {
92 93
            isRunning = false;
            outputDevice?.Stop();
94
            outputDevice?.Dispose();
95
            outputDevice = null;
96
            audioFile?.Dispose();
97 98 99 100
            audioFile = null;
        }
        void playMusic(string musicpath)
        {
101 102 103 104 105 106 107 108 109
            try
            {
                audioFile = new AudioFileReader(musicpath);
            }
            catch
            {
                //音乐无法启动
                return;
            }
110 111
            outputDevice = new WaveOutEvent();

潘栩锋's avatar
潘栩锋 committed
112

113 114
            outputDevice.Init(audioFile);
            outputDevice.PlaybackStopped += (s, e) =>
潘栩锋's avatar
潘栩锋 committed
115
            {
116 117 118 119 120 121 122 123 124 125 126
                if (isRunning)
                {
                    //重新播放!!
                    audioFile.Position = 0;
                    outputDevice.Play();
                }
            };
            outputDevice.Play();
        }
        void Play(string musicpath)
        {
127 128 129 130 131 132
            if (musicpath == null)
            {
                //没有音乐,关闭
                stopMusic();
            }
            else if (audioFile == null)
133 134
            {
                playMusic(musicpath);
潘栩锋's avatar
潘栩锋 committed
135
            }
136
            else if (audioFile.FileName != musicpath)
潘栩锋's avatar
潘栩锋 committed
137
            {
138 139
                stopMusic();
                playMusic(musicpath);
潘栩锋's avatar
潘栩锋 committed
140
            }
141
            isRunning = true;
潘栩锋's avatar
潘栩锋 committed
142 143 144 145 146 147 148

            if ((Duration == TimeSpan.MaxValue) || (Duration == TimeSpan.MinValue))
            {
                //永远打开
                timer.Stop();

            }
149
            else
潘栩锋's avatar
潘栩锋 committed
150 151 152 153 154 155 156 157 158 159 160 161
            {
                timer.Interval = Duration;
                timer.Start();
            }
        }

        /// <summary>
        /// 显示报警提示
        /// </summary>
        /// <param name="title">标题</param>
        /// <param name="message">内容</param>
        /// <returns>ID</returns>
162
        public static int Show(string title, string message)
潘栩锋's avatar
潘栩锋 committed
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
        {
            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, "确定", 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>
214
        public static int Show(string title, string message, TimeSpan duration, string musicpath, Action stophandler, string okcontent, Action okhandler)
潘栩锋's avatar
潘栩锋 committed
215 216 217 218 219
        {
            if (Current == null)
            {
                Current = new Window_WarningTip();
            }
220

潘栩锋's avatar
潘栩锋 committed
221 222 223 224 225 226 227 228 229 230 231 232 233

            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++;
234
            if (WarningTipID >= int.MaxValue - 1)
潘栩锋's avatar
潘栩锋 committed
235 236 237 238 239 240 241
                WarningTipID = 0;

            return WarningTipID;
        }
        private void button_ok_Click(object sender, RoutedEventArgs e)
        {
            Stop();
242
            OKEvent?.Invoke();
潘栩锋's avatar
潘栩锋 committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
        }
        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



    }
}