上一页 1 2 3 4 5 6 7 ··· 33 下一页
摘要: 参考: 1、Grid+TreeViewItem实现 https://dlaa.me/blog/post/9898803 2、【论坛】是否有内建的TreeGrid / TreeListView https://www.saoniuhuo.com/question/detail-2315256.html 阅读全文
posted @ 2023-04-18 11:11 不溯流光 阅读(488) 评论(1) 推荐(0) 编辑
摘要: 一、连接数据库 string connStr = @"server=" + Server + ";database=" + DataBase + ";user=" + User_ID + ";password=" + PassWord; 二、表格操作 1、新建表 string cmdStr = "C 阅读全文
posted @ 2023-04-18 11:03 不溯流光 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 一、连接数据库 connStr = string.Format("Data Source={0};Vertion=3", dataBasePath); eg:Data Source=D:\mm.db;Vertion=3 二、表格操作 1、新建表 string cmdStr = "CREATE TAB 阅读全文
posted @ 2023-04-18 10:53 不溯流光 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 一、固定某一部分大小 IsSpliterFixed属性设为FalseFixedPannel属性设为Pannel1(要固定的面板的名称) 二、设置分割边框的宽度 设置SplitterWidth,最小为1。 三、分割多个模块 如果SplitContainer的某一的Panel需要再进行分割,且对分割宽度 阅读全文
posted @ 2023-03-22 14:36 不溯流光 阅读(856) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Cool2Feel/article/details/81018722 [System.Runtime.InteropServices.DllImport("user32.dll ")] public static extern int SetWindowL 阅读全文
posted @ 2023-03-01 17:44 不溯流光 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 一、自定义颜色 this.BackColor = Color.FromArgb(255, 255, 255);//红、绿、蓝 应用于Pen、Brush、SolidBrush等: private Pen CustomizePenColor = new Pen(Color.FromArgb(0, 0, 阅读全文
posted @ 2023-03-01 17:05 不溯流光 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: 一、委托 delegate int Method(int a, int b); Method m += (a ,b) => a + b; m(2, 3); 二、linq表达式 internal abstract class GeoService { internal abstract void Up 阅读全文
posted @ 2023-02-20 17:17 不溯流光 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 一、使用 使用Newtonsoft.Json.DLL程序集。 https://blog.csdn.net/qq_40681630/article/details/120622909 1、执行步骤 (1)创建需要序列化的类,设计类中的属性结构,封装,构造 (2)序列化 string UserJson 阅读全文
posted @ 2023-02-20 15:18 不溯流光 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 一、RTP(Real-time Transport Protocol实时传输协议) RTP用来为IP网上的语音、图像、传真等多种需要实时传输的多媒体数据提供端到端的实时传输服务。 RTP为Internet上端到端的实时传输提供时间信息和流同步,但并不保证服务质量,服务质量由RTCP来提供。 http 阅读全文
posted @ 2023-02-20 15:11 不溯流光 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 一、大华解码器二次开发 https://www.cnblogs.com/HansZimmer/p/12674641.html 二、云台控制基本知识 https://www.cnblogs.com/cyx2019/articles/16220208.html 阅读全文
posted @ 2023-02-20 15:10 不溯流光 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 33 下一页