上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: /// <summary> /// Word转PDF 无水印 测试成功 20230204 /// </summary> /// <param name="docFile"></param> /// <param name="pdfFile"></param> /// <returns></retur 阅读全文
posted @ 2023-02-06 15:56 baivfhpwxf 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 系统操作日志的实现思路主要问题不在于写日志和表结构设计上。 主要问题在识别出哪些数据做了修改。并生成日志。 表中数据列众多,且要监控多个表。如果要监控的每个表都去写代码去监控和转换这样的工作量就会比较大。 如,用户表【Name,sex,Age】 生成的操作日志是:XX人在XX时间修改了用户的【姓名】 阅读全文
posted @ 2023-02-01 18:31 baivfhpwxf 阅读(168) 评论(0) 推荐(1) 编辑
摘要: 效果是:当TextBox控件的Text属性为空时show按钮不可用,有值时show按钮可用 项目结构 界面代码 <Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/prese 阅读全文
posted @ 2023-01-29 14:44 baivfhpwxf 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 核心代码AutoInjectRepository 类里的服务发现并自动注册是看服务实现类上有没有[AutoInject(typeof(IIndustryService), InjectType.Scope)]这个标签。有这个标签就会被注册 using System; using System.Col 阅读全文
posted @ 2023-01-29 14:38 baivfhpwxf 阅读(302) 评论(0) 推荐(1) 编辑
摘要: 项目使用三层结构RepositoryIocFactory using System; using System.Reflection; using Autofac; namespace CommonHelper.AutoInject.Repository { public class Reposit 阅读全文
posted @ 2023-01-29 12:01 baivfhpwxf 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-01-29 11:40 baivfhpwxf 阅读(68) 评论(0) 推荐(0) 编辑
摘要: MVVM Model:数据模型、View 界面、ViewModel 业务逻辑处理 项目结构 界面数据绑定 <Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presenta 阅读全文
posted @ 2023-01-26 21:55 baivfhpwxf 阅读(71) 评论(0) 推荐(0) 编辑
摘要: public sealed class SqlUtility { /// <summary> /// 多线程 /// 获取SQL执行结果<br/> /// 用属性的Set方法赋值 /// </summary> /// <typeparam name="TModel">返回数据类型</typepara 阅读全文
posted @ 2023-01-26 19:21 baivfhpwxf 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 全局锁不能并发。 实例锁在不同的实体下可以并发 阅读全文
posted @ 2023-01-26 12:06 baivfhpwxf 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-01-26 11:38 baivfhpwxf 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页