摘要: public static DataTable ReadDataTable(string filePath) { DataTable dt = new DataTable(); try { System.Text.Encoding encoding = Encoding.Default;//GetT 阅读全文
posted @ 2024-12-10 16:49 qiutian-hao 阅读(9) 评论(0) 推荐(0) 编辑
摘要: public static DataTable ReadDataTable(string filePath) { DataTable dt = new DataTable(); StreamReader sR = null; try { if (File.Exists(filePath)) { sR 阅读全文
posted @ 2024-12-10 16:48 qiutian-hao 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Dictionary<int, double> keyValuePairs = new Dictionary<int, double>(); keyValuePairs.Add(1, 10); keyValuePairs.Add(3, 33); keyValuePairs.Add(2, 13); / 阅读全文
posted @ 2024-12-10 16:48 qiutian-hao 阅读(4) 评论(0) 推荐(0) 编辑
摘要: // 使用DirectoryInfo类 DirectoryInfo directory = new DirectoryInfo(path); // 获取目录下的所有文件 FileInfo[] files = directory.GetFiles(); 阅读全文
posted @ 2024-12-10 16:47 qiutian-hao 阅读(5) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO.Ports; using System.Linq; using System.Text; using System.Threading; namespace DAL { public class AsySerialDal { private 阅读全文
posted @ 2024-10-15 10:54 qiutian-hao 阅读(36) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// HTTP POST请求 /// </summary> /// <param name="url">请求地址</param> /// <param name="value">参数</param> /// <param name="timeout">超时时间,默认5秒 阅读全文
posted @ 2024-09-30 14:40 qiutian-hao 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1.路由配置 配置重定向函数请求路径时,需要设置“属性路由”,否则不会生效。需要添加图片所示配置 2.控制器函数路径配置 [HttpPost] [Route("api/dataportal/invoke")] public JObject invoke([FromBody] JObject valu 阅读全文
posted @ 2024-09-30 14:24 qiutian-hao 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.封装windows API类 /// <summary> /// 封装Windows API的类 /// </summary> public class WindowAPIMethodsUtility { public const int WM_USER = 0x400; public cons 阅读全文
posted @ 2024-09-27 09:34 qiutian-hao 阅读(20) 评论(0) 推荐(0) 编辑
摘要: public HTuple hv_ExpDefaultWinHandle; //输入图像宽高 Int64 Input_Image_Width = 0, Input_Image_Height = 0; /// <summary> /// 加载图像 /// </summary> /// <param n 阅读全文
posted @ 2024-09-27 09:04 qiutian-hao 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 显示黑色,没有图像 设置主界面的AllowsTransparency=false; 参考文献:https://www.51halcon.com/forum.php?mod=viewthread&tid=4336 窗口显示对象过多,缩放目标丢失问题 加载图像初始化时,添加如下参数配置 //设置窗体显示 阅读全文
posted @ 2024-09-26 11:50 qiutian-hao 阅读(27) 评论(0) 推荐(0) 编辑