2024年1月13日
摘要:
中文提示 : 连接数据库过程中发生错误,检查服务器是否正常连接字符串是否正确,错误信息:Only the invariant culture is supported in globalization-invariant mode. See https://aka.ms/GlobalizationI
阅读全文
posted @ 2024-01-13 14:20
z5337
阅读(222)
推荐(0)
2024年1月10日
摘要:
官方的文档:https://www.pnpm.cn/installation 我电脑是先安装 cnpm ,再使用 cnpm 安装 pnpm : cnpm install -g pnpm 安装的很快,然后查看已安装版本: pnpm -v 8.14.0
阅读全文
posted @ 2024-01-10 09:28
z5337
阅读(179)
推荐(0)
2024年1月8日
摘要:
在 App.xaml.cs 里,override OnStartup ,添加以下代码: // 添加异常捕获 Current.DispatcherUnhandledException += Current_DispatcherUnhandledException; AppDomain.CurrentD
阅读全文
posted @ 2024-01-08 15:27
z5337
阅读(200)
推荐(0)
2024年1月6日
摘要:
开源项目地址:https://github.com/MapsterMapper/Mapster 与 AutoMapper 相比,Mapster 在速度和内存占用方面表现更加优秀 使用起来也很简单: 1、安装包,如果是 .net framework 环境,可以安装 6.X 版本,否则建议安装最新版本
阅读全文
posted @ 2024-01-06 21:00
z5337
阅读(161)
推荐(0)
2023年12月25日
摘要:
Windbg 官方下载地址:https://aka.ms/windbg/download 我是从 Microsoft Store 搜索 windebug 来下载安装的: 推荐从这个教程入门:https://learn.microsoft.com/zh-cn/windows-hardware/driv
阅读全文
posted @ 2023-12-25 22:45
z5337
阅读(101)
推荐(0)
摘要:
只需要在 App.xaml.cs 中添加以下代码: protected override void RegisterTypes(IContainerRegistry containerRegistry) { var factory = new NLog.Extensions.Logging.NLog
阅读全文
posted @ 2023-12-25 22:20
z5337
阅读(157)
推荐(0)
2023年12月13日
摘要:
在上一篇基础上,我们添加对字段的绑定效果: 界面添加: <TextBox Text="{Binding Name}" Width="120" Height="31" /> 在 MainWindowModel 里添加: public class MainWindowModel : INotifyPro
阅读全文
posted @ 2023-12-13 23:03
z5337
阅读(72)
推荐(0)
摘要:
传参这里参考:https://www.cnblogs.com/zhlziliaoku/p/5867556.html 文章参考:https://www.bilibili.com/video/BV1nY411a7T8 界面上添加一个按钮 <Button Content="点击" Width="120"
阅读全文
posted @ 2023-12-13 22:36
z5337
阅读(257)
推荐(0)
2023年12月12日
摘要:
参考:https://www.cnblogs.com/xpvincent/p/3848790.html 参考:https://blog.csdn.net/zhudaokuan/article/details/109059333 前端: <ComboBox Name="cmbBox" ItemsSou
阅读全文
posted @ 2023-12-12 14:46
z5337
阅读(347)
推荐(0)
2023年12月3日
摘要:
参考:https://restsharp.dev/usage.html#uploading-files var fileName = "ACE.jpg"; var filePath = "D:\\Wallpaper\\ACE.jpg"; var url = "http://localhost:999
阅读全文
posted @ 2023-12-03 21:18
z5337
阅读(754)
推荐(0)