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