摘要:
/// <summary> /// Crc32 表 /// </summary> private static UInt32[] Crc32Table = { 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F 阅读全文
摘要:
1、添加 yarn add js-pinyin 2、 初始化 import pinyin from "js-pinyin"; pinyin.setOptions({ checkPolyphone: false, charCase: 0 }); 3、引用 var temp= pinyin.getCam 阅读全文
摘要:
创建一个对象 DeviceOperatorModel deviceOperator = new DeviceOperatorModel(); 根据 编码,设置对象属性值 deviceOperator.GetType().GetProperty(item.iot_code).SetValue(devi 阅读全文
摘要:
1、fromform参数不显示中文的问题; 可通过设置 name属性 阅读全文
摘要:
1、环境 WebView2 - Microsoft Edge Developer 根据发布版本选择安装,默认x86 2、NuGet 安装:WebView2 3、Xaml使用 完成,到此完成一个简单版本的浏览器内核集成。 阅读全文
摘要:
1、无边框窗体 Background="Transparent" ResizeMode="NoResize" AllowsTransparency="True" WindowStyle="None" 2、拖拽移动 在Xaml中为Window添加MouseDown事件的处理方法 MouseDown=" 阅读全文
摘要:
1,首先 在工程根目录下建立.gitignore文件,将要排除的文件或目录 写到.gitignore这个文件中. 创建 .gitignore文件的方法 windows下 : 1.先创建gitignore.txt 2.打开命令行,到gitignore.txt目录下输入ren gitignore.txt 阅读全文