摘要: https://www.cnblogs.com/dyhao/p/14431775.html hangfire定时任务 方法未定义 https://www.cnblogs.com/yuangang/p/5725201.html 应用 https://docs.hangfire.io/en/latest 阅读全文
posted @ 2022-03-03 09:47 三竺 阅读(32) 评论(0) 推荐(0)
摘要: https://docs.abp.io/zh-Hans/abp/latest/Logging 阅读全文
posted @ 2022-02-25 15:41 三竺 阅读(90) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/codeex/article/details/120297949 阅读全文
posted @ 2022-01-03 15:14 三竺 阅读(36) 评论(0) 推荐(0)
摘要: try{ ///URL接口地址 HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL); request.Proxy = null; request.KeepAlive = false; request.Method = "GE 阅读全文
posted @ 2021-07-05 14:28 三竺 阅读(358) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u012551485/article/details/72354264/ WPF布局之让你的控件随着窗口等比放大缩小,适应多分辨率满屏填充应用 阅读全文
posted @ 2021-06-15 08:51 三竺 阅读(36) 评论(0) 推荐(0)
摘要: https://www.itdaan.com/blog/2017/07/05/ef75247e8d1360ece5c5e1b8e0a84f2.html C#的WPF中使用多线程导致界面假死问题的解决 该文章解释并解决了为什么线程和委托的调用无法解决界面假死问题。 阅读全文
posted @ 2021-06-11 19:19 三竺 阅读(55) 评论(0) 推荐(0)
摘要: //延时程序 private static void Delay(int millisecond) { int start = Environment.TickCount; while (Math.Abs(Environment.TickCount - start) < millisecond) { 阅读全文
posted @ 2021-06-11 14:38 三竺 阅读(103) 评论(0) 推荐(0)