摘要:
C# MD5 32位加密 UTF-8编码 public static string GetMD5(string str) { byte[] b = System.Text.Encoding.Default.GetBytes(str); b = new System.Security.Cryptogr 阅读全文
摘要:
UWP 播放直播流 3MU8 参考:http://www.c-sharpcorner.com/UploadFile/2b876a/http-live-streaming-in-windows-10-uwp/ Create new Windows 10 project and go to MainPa 阅读全文
摘要:
UPW ListView 下拉刷新方法-通过访问ListView内部的ScrollViewer控件,来监听ViewChanged事件。(直接测试有效) 访问ListView内部的ScrollViewer,必定离不开VisualTreeHelper类中的以下两个方法: public static De 阅读全文
摘要:
TTS 直接传入文字 MediaElement mediaElement = new MediaElement(); var synth = new Windows.Media.SpeechSynthesis.SpeechSynthesizer(); Windows.Media.SpeechSynt 阅读全文
摘要:
' 'write file Dim nHandle As Integer, fName As String fName = "d:\1.txt" nHandle = FreeFile Open fName For Output As #nHandle Print #nHandle, "0" Prin 阅读全文