摘要:
在网上直接下载别人编译好的Qt库,为自己使用省了不少事。但往往也会遇到些问题,其中Qt version is not properly installed,please run make installQt没有被正确安装,请运行make install这个问题是比较常见的一个。网上看了一个帖子,终于 阅读全文
摘要:
https://blog.csdn.net/just_lion/article/details/73468616 win7在ping localhost时显示地址为 [::1],地址不可达。 如果想禁掉IPV6地址,可以设置注册表: HKEY_LOCAL_MACHINE\SYSTEM\Current 阅读全文
摘要:
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R 阅读全文
摘要:
https://zimjs.com/components/ 阅读全文
摘要:
https://blog.csdn.net/mgy_2601907/article/details/100988387 //导入证书 WebRequestHandler handler = new WebRequestHandler(); string certificateFileName = 此 阅读全文
摘要:
c# 中HttpClient访问Https网站,加入如下代码: handler = new HttpClientHandler() ;handler.AllowAutoRedirect = true;handler.UseCookies = true;handler.CookieContainer 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_94a1fe540102ympb.html using System; using System.Collections.Generic; using System.IO; using System.Linq; using System. 阅读全文
摘要:
//根据操作系统处理启动方式 //How to run a .NET Core console app as a service using Systemd on Linux //https://swimburger.net/blog/dotnet/how-to-run-a-dotnet-core- 阅读全文
摘要:
前端生成拓扑图、关系图、流程图的 JavaScript 插件有很多,各种编辑器五法八门。本文对比各插件的优缺点,为选型提供一些参考。 前言 目标: 实现一个网络拓扑图的可视化界面 可通过托拉拽的方式对图进行编辑(节点、连线、属性) 能跟后台数据进行动态绑定 具有告警功能 其它一些细节 为什么选择第三 阅读全文
摘要:
我们知道只有UI线程才能更新UI界面,其他线程访问UI控件被认为是非法的。但是我们在进行异步操作时,经常需要将异步执行的进度报告给用户,让用户知道任务的进度,不至于让用户误认为程序“死掉了”,特别是对于Winform,WPF等客户端程序尤为重要。 那么我们要探讨的就是如何让非UI的任务线程更新UI界 阅读全文