摘要: 资料: Eplan API :https://www.eplan.help/en-US/infoportal/content/api/2.8/index.html; 遇到的坑: 1:prism以插件的形式加入Eplan,需要从Bootstrapper开始,而不是APP.XAML,详见https:// 阅读全文
posted @ 2022-01-28 09:01 显示名称已被使用!!! 阅读(137) 评论(0) 推荐(0) 编辑
摘要: System.Threading.ThreadAbortException: 正在中止线程 阅读全文
posted @ 2018-07-27 09:50 显示名称已被使用!!! 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 开始加载的时候判断是否已存储用户名: 阅读全文
posted @ 2018-07-03 12:57 显示名称已被使用!!! 阅读(914) 评论(0) 推荐(0) 编辑
摘要: 默认在IIS上是没有添加对*.woff,*.svg文件的Mime类型 解决方法: 在iis的MIME类型中加上woff类型: 阅读全文
posted @ 2018-06-15 16:35 显示名称已被使用!!! 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 前台按钮:ligerui 1 <td style="padding-left: 40px"> 2 <input type="button" class="1-button" onclick="showImg()" value="显示图片" /> 3 </td> 4 5 6 7 function sh 阅读全文
posted @ 2017-07-18 09:13 显示名称已被使用!!! 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 服务端(监听) #region Socket连接 public Socket socket;//负责通信的socket Socket socketWatch;//负责监听的socket CancellationTokenSource cancellationTokenSource = new Can 阅读全文
posted @ 2017-07-17 17:17 显示名称已被使用!!! 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Linq; 3 using System.Collections.Generic; 4 using System.Text; 5 using System.Windows.Forms; 6 using System.Runtime.Int 阅读全文
posted @ 2017-07-17 16:25 显示名称已被使用!!! 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 static class Program 2 { 3 4 [DllImport("Toolhelp.dll")] 5 public static extern IntPtr CreateToolhelp32Snapshot(uint flags, uint processid); 6 [DllI 阅读全文
posted @ 2017-07-17 16:20 显示名称已被使用!!! 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// 绘制选项卡 3 /// </summary> 4 /// <param name="sender"></param> 5 /// <param name="e"></param> 6 private void tabControl1_DrawItem(ob 阅读全文
posted @ 2017-07-07 09:11 显示名称已被使用!!! 阅读(1580) 评论(0) 推荐(0) 编辑
摘要: 1 /// 2 /// 应用程序的主入口点。 3 /// 4 [STAThread] 5 static void Main() 6 { 7 #region 判断程序是否已打开 8 int processCount = 0; 9 ... 阅读全文
posted @ 2017-06-23 10:58 显示名称已被使用!!! 阅读(1038) 评论(0) 推荐(0) 编辑