会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
MrKing&
博客园
首页
新随笔
联系
订阅
管理
2025年3月18日
RestSharp 推荐一个.NET(C#)的HTTP辅助类组件,一秒实现上传
摘要: 一、nuget包引用,我这里用的版本比较老 二、使用 RestClient client = new RestClient(); client.Timeout = 5000; client.ReadWriteTimeout = 5000; client.BaseUrl = new Uri(" ");
阅读全文
posted @ 2025-03-18 15:58 MrKing&
阅读(75)
评论(0)
推荐(0)
2024年7月11日
Navicat15破解版安装
摘要: Navicat15破解版安装,记录一下 运行破解工具时,记得断网 转载地址: https://www.cnblogs.com/xuexianqi/p/12797170.html
阅读全文
posted @ 2024-07-11 10:14 MrKing&
阅读(13)
评论(0)
推荐(0)
2023年12月8日
C#读取SQL数据库,并将读取的数据上传至服务简易Demo
摘要: 1.使用的NuGet包 2.IRepository 接口 { IEnumerable<Package> GetAllPackages(); void DeleteByCodePackages(string code); // void InitRepository(); } 3.SimpleRepo
阅读全文
posted @ 2023-12-08 13:44 MrKing&
阅读(148)
评论(0)
推荐(0)
2023年10月30日
WPF项目中用到的一些实用第三方库
摘要:
阅读全文
posted @ 2023-10-30 13:25 MrKing&
阅读(124)
评论(0)
推荐(0)
2023年4月3日
WPF入门基础2-控件模板、数据模板
摘要: 1.控件模板 <ControlTemplate x:Key="myTemplate" TargetType="Button"> <Border Background="Green" CornerRadius="45"> <StackPanel> <TextBlock Text="****"/> <C
阅读全文
posted @ 2023-04-03 16:20 MrKing&
阅读(220)
评论(0)
推荐(0)
2023年3月31日
WPF入门基础1——样式、触发器
摘要: 1.样式 <Style x:Key="myStyle" TargetType="Button" > <Setter Property="Foreground" Value="Green"></Setter> <Setter Property="FontSize" Value="30"></Sette
阅读全文
posted @ 2023-03-31 15:21 MrKing&
阅读(88)
评论(0)
推荐(0)
2023年2月24日
WPF图标库——MahApps.Metro.IconPacks
摘要: 1.https://github.com/MahApps/IconPacks.Browser下载 下载后在bin目录下运行“IconPacks.Browser”挑选需要使用的图标 运行后如下: 2.选择想要使用的图标,拷贝代码 3.项目引用 在nuget管理器中安装第三方界面图标库 MahApps.
阅读全文
posted @ 2023-02-24 15:54 MrKing&
阅读(1888)
评论(0)
推荐(0)
2022年11月29日
做个记录,把看完的书籍记录一下
摘要: 一、看完 WPF书籍:WPF宝典、WPF深入浅出 c#书籍:
阅读全文
posted @ 2022-11-29 10:11 MrKing&
阅读(48)
评论(0)
推荐(0)
2022年11月23日
为git设置忽略文件
摘要: 在.net开发中,有很多文件是不希望上传,加入协助开发中,例如生成在的bin/Debug, bin/Release文件等。 在代码目录下建立.gitignore文件: .gitignore (用记事本另存可以保存这个名字),配置上要忽略的文件或者文件夹,然后提交到git 上就可以了。 1.以下是Gi
阅读全文
posted @ 2022-11-23 16:39 MrKing&
阅读(4893)
评论(0)
推荐(0)
使用git克隆代码与上传代码
摘要: 一、 安装git 登陆git官网:https://git-scm.com/window国内镜像下载:https://registry.npmmirror.com/binary.html?path=git-for-windows/ 二、 下载git initgit clone+地址 三、1.提交新项目
阅读全文
posted @ 2022-11-23 16:24 MrKing&
阅读(1007)
评论(0)
推荐(0)
下一页
公告