上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 60 下一页
  2024年1月29日
摘要: // 二进制 7 System.out.println(0b111); // 八进制 73 System.out.println(0111); // 十进制 111 System.out.println(111); // 十六进制 273 System.out.println(0x111); 基本数 阅读全文
posted @ 2024-01-29 22:12 z5337 阅读(3) 评论(1) 推荐(0) 编辑
  2024年1月18日
摘要: 参考:https://www.cnblogs.com/jolinpiggy/articles/10700982.html 参考:https://www.cnblogs.com/whai/p/5127115.html 这样就可以: <Image Source="pack://application:, 阅读全文
posted @ 2024-01-18 17:27 z5337 阅读(60) 评论(0) 推荐(0) 编辑
  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 阅读(68) 评论(0) 推荐(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 阅读(43) 评论(0) 推荐(0) 编辑
  2024年1月8日
摘要: 在 App.xaml.cs 里,override OnStartup ,添加以下代码: // 添加异常捕获 Current.DispatcherUnhandledException += Current_DispatcherUnhandledException; AppDomain.CurrentD 阅读全文
posted @ 2024-01-08 15:27 z5337 阅读(71) 评论(0) 推荐(0) 编辑
  2024年1月6日
摘要: 开源项目地址:https://github.com/MapsterMapper/Mapster 与 AutoMapper 相比,Mapster 在速度和内存占用方面表现更加优秀 使用起来也很简单: 1、安装包,如果是 .net framework 环境,可以安装 6.X 版本,否则建议安装最新版本 阅读全文
posted @ 2024-01-06 21:00 z5337 阅读(45) 评论(0) 推荐(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 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 只需要在 App.xaml.cs 中添加以下代码: protected override void RegisterTypes(IContainerRegistry containerRegistry) { var factory = new NLog.Extensions.Logging.NLog 阅读全文
posted @ 2023-12-25 22:20 z5337 阅读(39) 评论(0) 推荐(0) 编辑
  2023年12月13日
摘要: 在上一篇基础上,我们添加对字段的绑定效果: 界面添加: <TextBox Text="{Binding Name}" Width="120" Height="31" /> 在 MainWindowModel 里添加: public class MainWindowModel : INotifyPro 阅读全文
posted @ 2023-12-13 23:03 z5337 阅读(20) 评论(0) 推荐(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 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 60 下一页