上一页 1 2 3 4 5 6 ··· 12 下一页

2024年4月1日

摘要: static void Main(string[] args) { Process process = null; CancellationTokenSource cancellationTokenSource = null; do { var command = Console.ReadLine( 阅读全文

posted @ 2024-04-01 18:31 云起 阅读(5) 评论(1) 推荐(0) 编辑


2024年3月27日

摘要: 由于应用需求,需要调用C的类库,本来是用[DllImport]中绝对路径的方式引入就行,但无奈该类库还有其他类库,也并非自己的程序提供,所以还是想采用动态的方式进行引入。 Tips:由于是C的类库,不能采用Assembly.Load的方式,会抛出System.BadImageFormatExcept 阅读全文

posted @ 2024-03-27 16:11 云起 阅读(2) 评论(0) 推荐(0) 编辑


2024年3月15日

摘要: 开发了一个gui工具,有同事在win7环境下发现界面无法加载出来。 经过调试发现,在view初始化的过程中,提示PresentationFramework.Aero2无法加载,异常信息如下: {System.BadImageFormatException: Could not load file o 阅读全文

posted @ 2024-03-15 17:15 云起 阅读(51) 评论(0) 推荐(0) 编辑


2024年2月5日

摘要: 在前端向后端传递数据的过程中,因为涉及多个属性的调用,将数据绑定到CommandParameter,采用了多值转换器进行数据传递。 class MultiBindingConverter : IMultiValueConverter { public object Convert(object[] 阅读全文

posted @ 2024-02-05 15:44 云起 阅读(130) 评论(0) 推荐(0) 编辑


2023年12月13日

摘要: import arcpy import os # Set output file names outdir = r"D:" service = "MapImageSharingDraftExample" mapname = "" sddraft_filename = service + ".sddr 阅读全文

posted @ 2023-12-13 12:34 云起 阅读(49) 评论(0) 推荐(0) 编辑


2023年9月20日

摘要: 有一个需求,程序运行过程中,定时进行一次截图。 开始的时候,采用的全屏截图的方式 Rectangle bounds = Screen.GetBounds(Point.Empty); using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Heig 阅读全文

posted @ 2023-09-20 18:25 云起 阅读(78) 评论(0) 推荐(0) 编辑


2023年7月25日

摘要: vsix是vs扩展安装的包,里面包含了vs扩展功能的相关内容和元数据。 由于个人需求,我通过zip工具,对其中的许可文件进行了更新,将EULA.rtf替换为eula.txt。但在安装过程中报错,日志提示 Microsoft.VisualStudio.ExtensionManager.MissingP 阅读全文

posted @ 2023-07-25 12:46 云起 阅读(31) 评论(0) 推荐(0) 编辑


2023年7月13日

摘要: try { //Create a new XslTransform object. XslCompiledTransform xslt = new XslCompiledTransform(); //Load the stylesheet. var xlst = "xlstPath"; xslt.L 阅读全文

posted @ 2023-07-13 10:21 云起 阅读(15) 评论(0) 推荐(0) 编辑


2023年7月12日

摘要: 在业务中,字符串格式化处理比较常见,替换也是个很常见的操作。 最近遇到个问题,在处理字符串替换过程中,遇到了out of memory错误。 string text; Dictionary<string, string> dic; foreach (var key in dic.Kesy) { te 阅读全文

posted @ 2023-07-12 15:17 云起 阅读(8) 评论(0) 推荐(0) 编辑


2023年5月12日

摘要: 在Pro SDK中,可以通过dackpane的Hide()方法,对面板进行隐藏。 DockPane pane = FrameworkApplication.DockPaneManager.Find("pane_name"); pane.Hide(); 但有个同事,在自定义的module中,希望在初始 阅读全文

posted @ 2023-05-12 18:08 云起 阅读(6) 评论(0) 推荐(0) 编辑


上一页 1 2 3 4 5 6 ··· 12 下一页

Copyright © 2024 云起
Powered by .NET 9.0 on Kubernetes