摘要: https://blog.csdn.net/qq_42881421/article/details/140184354 阅读全文
posted @ 2024-10-26 17:20 KevinSteven 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_39654101/article/details/131720116 阅读全文
posted @ 2024-10-26 17:19 KevinSteven 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 问题描述: FlowLayoutPanel 在win10可以鼠标滚轮 上下滚动图片,在win7却不行。 原因: FlowLayoutPanel默认不支持鼠标滚轮MouseWheel事件,在win10系统中,win10可以自动设置FlowLayoutPanel的焦点,实现滚轮滚动效果。win7不能自动 阅读全文
posted @ 2024-10-11 18:20 KevinSteven 阅读(10) 评论(0) 推荐(0) 编辑
摘要: //数据压缩成Zip再发送 public static string ZipBasebyte(string xml) { byte[] bytesToCompress = Encoding.GetEncoding("GBK").GetBytes(xml); MemoryStream ms = new 阅读全文
posted @ 2024-06-15 15:49 KevinSteven 阅读(22) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 除去指定区域水印 /// </summary> /// <param name="sourceImagePath"></param> /// <param name="outputImagePath"></param> public static void Rem 阅读全文
posted @ 2024-06-15 15:43 KevinSteven 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 使用NuGet程序包下载安装 O2S.Components.PDFRender4NET.dll using O2S.Components.PDFRender4NET; //引用 O2S.Components.PDFRender4NET.dll /// <summary> /// PDF转JPEG / 阅读全文
posted @ 2024-06-15 15:42 KevinSteven 阅读(14) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wangjinya/p/14535023.html 阅读全文
posted @ 2023-10-21 15:53 KevinSteven 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 设置问用户名和邮箱后 使用以下命令,下载线上代码 git clone [代码URL] 上传代码 git add -A git commit -m [文件名称] git push -u origin master 阅读全文
posted @ 2023-10-04 16:26 KevinSteven 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1.用户名和邮箱的作用 用户名和邮箱地址是本地Git客户端的一个变量,用户每次提交代码都会记录用户名和邮箱。 安装好Git后,打开Git bash Here,在命令框中,输入以下命令 2.设置用户名 3.设置邮箱 4.查看用户名和邮箱 阅读全文
posted @ 2023-10-04 16:00 KevinSteven 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/m372838677/article/details/121360607 string connString = "Server=MATEBOOK16S\\SQLEXPRESS;DataBase=MISDB;Uid=sa;Pwd=123456"; v 阅读全文
posted @ 2023-10-02 13:29 KevinSteven 阅读(14) 评论(0) 推荐(0) 编辑