会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
KevinSteven
博客园
首页
新随笔
联系
订阅
管理
2024年10月26日
使用微信开发者工具连接gitee
摘要: https://blog.csdn.net/qq_42881421/article/details/140184354
阅读全文
posted @ 2024-10-26 17:20 KevinSteven
阅读(11)
评论(0)
推荐(0)
编辑
Visual Studio和Git创建远程连接
摘要: https://blog.csdn.net/qq_39654101/article/details/131720116
阅读全文
posted @ 2024-10-26 17:19 KevinSteven
阅读(1)
评论(0)
推荐(0)
编辑
2024年10月11日
winform中FlowLayoutPanel 在win10可以鼠标滚轮滚动图片,win7不行的原因和解决办法
摘要: 问题描述: FlowLayoutPanel 在win10可以鼠标滚轮 上下滚动图片,在win7却不行。 原因: FlowLayoutPanel默认不支持鼠标滚轮MouseWheel事件,在win10系统中,win10可以自动设置FlowLayoutPanel的焦点,实现滚轮滚动效果。win7不能自动
阅读全文
posted @ 2024-10-11 18:20 KevinSteven
阅读(10)
评论(0)
推荐(0)
编辑
2024年6月15日
Http压缩zip,加密base64发送与获取
摘要: //数据压缩成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)
编辑
PDF转换成JPEG格式
摘要: 使用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)
编辑
2023年10月21日
.NetCore认证中间件
摘要: https://www.cnblogs.com/wangjinya/p/14535023.html
阅读全文
posted @ 2023-10-21 15:53 KevinSteven
阅读(3)
评论(0)
推荐(0)
编辑
2023年10月4日
Git 代码上传和下载
摘要: 设置问用户名和邮箱后 使用以下命令,下载线上代码 git clone [代码URL] 上传代码 git add -A git commit -m [文件名称] git push -u origin master
阅读全文
posted @ 2023-10-04 16:26 KevinSteven
阅读(21)
评论(0)
推荐(0)
编辑
Git 设置用户名和邮箱
摘要: 1.用户名和邮箱的作用 用户名和邮箱地址是本地Git客户端的一个变量,用户每次提交代码都会记录用户名和邮箱。 安装好Git后,打开Git bash Here,在命令框中,输入以下命令 2.设置用户名 3.设置邮箱 4.查看用户名和邮箱
阅读全文
posted @ 2023-10-04 16:00 KevinSteven
阅读(293)
评论(0)
推荐(0)
编辑
2023年10月2日
C# 调用存储过程
摘要: 转载: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)
编辑
下一页
公告