Window_WarningTip.xaml.cs 7.55 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;
潘栩锋's avatar
潘栩锋 committed
14
using NAudio.Wave;
潘栩锋's avatar
潘栩锋 committed
15 16 17 18 19 20 21 22 23 24 25 26 27

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;

潘栩锋's avatar
潘栩锋 committed
28 29 30 31
        private WaveOutEvent outputDevice;
        private AudioFileReader audioFile;
        private bool isRunning;

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

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

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

        
潘栩锋'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);
        }
潘栩锋's avatar
潘栩锋 committed
58

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

潘栩锋's avatar
潘栩锋 committed
63 64 65 66 67
            //到时间了,把音乐关闭
            stopMusic();

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

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

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

潘栩锋's avatar
潘栩锋 committed
112

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

            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, "确定", 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, Action stophandler, string okcontent, Action okhandler) 
        {
            if (Current == null)
            {
                Current = new Window_WarningTip();
            }

潘栩锋's avatar
潘栩锋 committed
221
            
潘栩锋's avatar
潘栩锋 committed
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
            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();
潘栩锋's avatar
潘栩锋 committed
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



    }
}