上一页 1 2 3 4 5 6 7 ··· 33 下一页
摘要: 一、理论 1、https://zhuanlan.zhihu.com/p/446581575 2、几种常用的加密方式 二、Aes加密“指定的密钥对此算法无效” 建议您通过在AES类中使用LegalKeySizes property来检查密钥的有效大小。 有效密钥大小由特定的对称算法实现指定,并在Leg 阅读全文
posted @ 2023-06-04 16:52 不溯流光 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 一、常用筛选命令 https://blog.csdn.net/victorwjw/article/details/128663799 二、保存Filter的删除方法 在电脑的 C:\Users\ 用户名 \AppData\Roaming\Wireshark文件夹下有一个preferences文件。打 阅读全文
posted @ 2023-06-04 16:49 不溯流光 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 一、改变开关颜色 ts.LookAndFeel.UseDefaultLookAndFeel = false;//重要 ts.LookAndFeel.SkinMaskColor = Color.FromArgb(204, 0, 0); 阅读全文
posted @ 2023-05-10 17:22 不溯流光 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 一、保持图片比例跟随控件大小缩放 pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;//PictureBoxSizeMode.StretchImage; pictureBox1.BackgroundImageLayout = ImageLayout.Zoo 阅读全文
posted @ 2023-04-28 17:44 不溯流光 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 一、添加十字光标 实现鼠标放到曲线上能显示X、Y值,可以选择隐藏某条光标线。 <dxc:ChartControl DataSource="{Binding Data}"> <dxc:ChartControl.CrosshairOptions> <dxc:CrosshairOptions ShowAr 阅读全文
posted @ 2023-04-28 17:15 不溯流光 阅读(300) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 根据中位数返回区间随机数 /// </summary> /// <param name="mid"></param> /// <returns></returns> private static int GetRandom(int mid) { //1. //Ra 阅读全文
posted @ 2023-04-18 11:12 不溯流光 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 参考: 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 不溯流光 阅读(736) 评论(1) 推荐(0) 编辑
摘要: 一、连接数据库 string connStr = @"server=" + Server + ";database=" + DataBase + ";user=" + User_ID + ";password=" + PassWord; 二、表格操作 1、新建表 string cmdStr = "C 阅读全文
posted @ 2023-04-18 11:03 不溯流光 阅读(115) 评论(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 不溯流光 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 一、固定某一部分大小 IsSpliterFixed属性设为FalseFixedPannel属性设为Pannel1(要固定的面板的名称) 二、设置分割边框的宽度 设置SplitterWidth,最小为1。 三、分割多个模块 如果SplitContainer的某一的Panel需要再进行分割,且对分割宽度 阅读全文
posted @ 2023-03-22 14:36 不溯流光 阅读(1255) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 33 下一页