06 2021 档案

摘要:public class Student { public int ID { get; set; } public string Name { get; set; } public int Age { get; set; } public DateTime CreateTime { get; set 阅读全文
posted @ 2021-06-29 19:17 LuoCore 阅读(904) 评论(0) 推荐(0) 编辑
摘要:VSColorOutpu (2022) VSColorOutput64 让输出窗口的不同内容按不同颜色显示,警告和错误一目了然 https://zhuanlan.zhihu.com/p/265287451 BundlerMinifier,静态资源最小化打包工具 对前端资源的自动化打包工具,可将多个静 阅读全文
posted @ 2021-06-28 11:12 LuoCore 阅读(1524) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/profession/p/6222489.html //四种深拷贝方法 public static T DeepCopyByReflect<T>(T obj) { //如果是字符串或值类型则直接返回 if (obj is string || obj.G 阅读全文
posted @ 2021-06-25 17:20 LuoCore 阅读(472) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/jizhongfong/p/4384689.html var bind = new Binding("Enabled", OrderViewModel.Instance.Commands.ThreadManager, "IsRunning"); bin 阅读全文
posted @ 2021-06-25 13:42 LuoCore 阅读(1418) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_41923658/article/details/103214742 找到电脑上 VS 的注册表,删除共享组件、工具和 SDK 的注册表: WIN + R --> regedit --> HKEY_LOCAL_MACHINE -->SOFTW 阅读全文
posted @ 2021-06-24 09:39 LuoCore 阅读(2195) 评论(0) 推荐(0) 编辑
摘要:http://www.bubuko.com/infodetail-1923328.html 需要将 &#x 替换成 \u 最终是\ue603 //使用方法protected override void OnShown(EventArgs e) { base.OnShown(e); ImageFont 阅读全文
posted @ 2021-06-23 15:10 LuoCore 阅读(1077) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/1708625252109670420.html 然后在里面输入cmd出现的命令提示框内输入“netsh winsock reset"按”Enter“键。 (测试无效) 阅读全文
posted @ 2021-06-21 13:21 LuoCore 阅读(607) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 自定义绑定列表类 /// </summary> /// <typeparam name="T">列表对象类型</typeparam> public class BindingCollection<T> : BindingList<T> { private bool 阅读全文
posted @ 2021-06-19 11:51 LuoCore 阅读(282) 评论(0) 推荐(0) 编辑
摘要:感谢:https://blog.csdn.net/duyunzhi/article/details/89215917 提供思路 感谢:https://q.cnblogs.com/q/111311 提问,提供解决方案 用原生的 Attribute 是达不到效果必须重写 public class Log 阅读全文
posted @ 2021-06-16 14:43 LuoCore 阅读(437) 评论(3) 推荐(0) 编辑
摘要:https://www.cnblogs.com/wangjunwei/p/4523739.html sqlObj.Value.Select(x => string.Format("'{0}'='{1}'", x.ParameterName,x.Value)).ToList(); string.Joi 阅读全文
posted @ 2021-06-16 12:57 LuoCore 阅读(233) 评论(0) 推荐(0) 编辑
摘要:npm Error: Cannot find module 有可能是路径错误。你看下看看他输入的路径是不是没有找到vue 模块 用下面的语句设置nodjs默认路径 npm config set prefix "D:\nodejs\node_global" npm config set cache " 阅读全文
posted @ 2021-06-14 23:15 LuoCore 阅读(66) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 文件是否被占用 /// </summary> /// <param name="fileName"></param> /// <returns></returns> public static bool IsFileInUse(string fileName) { 阅读全文
posted @ 2021-06-11 11:48 LuoCore 阅读(667) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_30919571/article/details/102321538 有个处理方法在引发异常的发放上面加上 [System.Runtime.ExceptionServices.HandleProcessCorruptedStateExcept 阅读全文
posted @ 2021-06-11 10:46 LuoCore 阅读(812) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 将绑定数据源和控件绑定 /// </summary> /// <param name="ctl">控件</param> /// <param name="propertyName">属性名称</param> /// <param name="BindingSour 阅读全文
posted @ 2021-06-10 14:20 LuoCore 阅读(712) 评论(0) 推荐(0) 编辑