摘要: 遮罩了全部页面,点一下就会关闭遮罩层,显然不是我想要的效果。 因为用到了子组件,遮罩层无法插入至 Dialog 的父元素上,搜了搜官方文档发现 设置:modal-append-to-body="false"搞定 阅读全文
posted @ 2022-03-25 17:15 _小马哥 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Net.Http; using System.Net.Http.Headers; 阅读全文
posted @ 2021-11-17 10:07 _小马哥 阅读(3032) 评论(2) 推荐(0) 编辑
摘要: <Window x:Class="RecCore.Main.Controls.Loading.LoadingCtl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.m 阅读全文
posted @ 2021-07-23 11:07 _小马哥 阅读(414) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 自动注册服务——获取程序集中的实现类对应的多个接口 /// </summary> /// <param name="services">服务集合</param> /// <param name="assemblyName">程序集名称</param> public 阅读全文
posted @ 2021-05-11 17:16 _小马哥 阅读(345) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 生成圆形头像 /// </summary> /// <param name="text">文本</param> /// <param name="path">路径</param> /// <returns></returns> public static Memo 阅读全文
posted @ 2021-04-19 17:28 _小马哥 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 在Startup文件中添加 services.AddControllers().AddNewtonsoftJson(options => { //忽略循环引用 options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandli 阅读全文
posted @ 2020-11-18 14:48 _小马哥 阅读(1757) 评论(0) 推荐(0) 编辑
摘要: public class Utils { /// <summary> /// 生成随机字母字符串(数字字母混和) /// </summary> /// <param name="codeCount">待生成的位数</param> public static string GetCheckCode(i 阅读全文
posted @ 2020-09-09 00:11 _小马哥 阅读(732) 评论(0) 推荐(0) 编辑
摘要: 下载安装Jenkins 地址:https://www.jenkins.io/download/ 安装成功后浏览器中输入http://localhost:8080/打开Jenkins主页面 根据提示拿到密钥粘贴到文本框中继续... 等待自动安装完毕,失败的多重复几次就可以,失败也无所谓,进入管理页面也 阅读全文
posted @ 2020-07-31 17:54 _小马哥 阅读(418) 评论(0) 推荐(1) 编辑
摘要: using System; using System.Diagnostics; using System.IO; using System.Text; namespace ConsoleApp_NetCore { class Program { static void Main(string[] a 阅读全文
posted @ 2020-06-15 16:21 _小马哥 阅读(1454) 评论(0) 推荐(0) 编辑
摘要: 相关文档 https://pay.weixin.qq.com/wiki/doc/api/H5.php?chapter=9_20&index=1 需要准备 公众号ID、商户号、商家私钥 1、登录微信商户平台申请开通h5支付功能 2、在产品中心-开发配置添加域名配置 static string _pre 阅读全文
posted @ 2019-11-15 17:27 _小马哥 阅读(2320) 评论(1) 推荐(3) 编辑