摘要: 1.语音播放如果不做处理的话,程序只能等待语音播放完才进行下一步动作。 SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer(); Task.Factory.StartNew(() => { speechSynthesizer.Spe 阅读全文
posted @ 2021-10-09 15:01 MrKing& 阅读(121) 评论(0) 推荐(0) 编辑
摘要: nuget引用WpfAnimatedGif xaml使用 <Image gif:ImageBehavior.AnimatedSource="/Images/请授权.gif" Stretch="Fill" /> 阅读全文
posted @ 2021-10-09 10:51 MrKing& 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1.引用System.Speech.dll 简单使用 SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer(); speechSynthesizer.Speak("欢迎使用"); 2.具体语音播放教程文档 https://www.wp 阅读全文
posted @ 2021-10-09 09:54 MrKing& 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1.获取本机Mac地址 ///<summary> /// 通过NetworkInterface读取网卡Mac ///</summary> ///<returns></returns> public static List<string> GetMacByNetworkInterface() { Li 阅读全文
posted @ 2021-10-09 09:44 MrKing& 阅读(222) 评论(0) 推荐(0) 编辑