摘要: Publicfile publicfile = new Publicfile(); try { string filePath = Path.Combine("C:?", fileName); if (!File.Exists(filePath)) { WriteErrorLog($"File({f 阅读全文
posted @ 2024-12-18 14:41 芈璐 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Publicfile publicfile = new Publicfile(); publicfile.FileName = "TESTFILE"; publicfile.Position1 = 100; Type type = typeof(Publicfile); PropertyInfo[] 阅读全文
posted @ 2024-12-18 14:36 芈璐 阅读(4) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Reflection; public class MyClass { public int Property1 { get; set; } = 42; public string Property2 { get; set; } = "Hello, 阅读全文
posted @ 2024-12-17 14:13 芈璐 阅读(5) 评论(0) 推荐(0) 编辑
摘要: XDocument document = new XDocument(new XDeclaration("1.0","utf-8",null)); XElement root = new XElement("root"); root.SetAttributeValue("Name", "Config 阅读全文
posted @ 2024-12-16 14:11 芈璐 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 安装好VisionPro后,默认组件路径: C:\Program Files\Cognex\VisionPro\ReferencedAssemblies\Cognex.VisionPro.Controls.dll 将dll拖入工具箱即可使用。 阅读全文
posted @ 2024-04-26 14:10 芈璐 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 比如: int i = 1; if (i != 100 && i != 200 && i != 300) { return; } 优化: int i = 1; if (!new[] { 100, 200, 300 }.Contains(i)) { return; } 这样后续增加匹配数据,只需要把检 阅读全文
posted @ 2024-04-24 10:43 芈璐 阅读(13) 评论(0) 推荐(0) 编辑
摘要: string ip = "127.0.0.1"; //要检查的IP地址 Ping pingSender = new Ping(); try { PingReply reply = pingSender.Send(ip, 120); if (reply.Status == IPStatus.Succe 阅读全文
posted @ 2024-03-27 09:28 芈璐 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 问题解决一: 如果是窗体属性加载了背景图导致的内存占用,在关闭窗体前,释放掉背景图资源即可释放占用的内存 private Image backgroundImage; public Form2() { InitializeComponent(); backgroundImage = Image.Fr 阅读全文
posted @ 2024-03-27 09:18 芈璐 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 我用的是Caliburn Micro框架,自建框架或者使用其它框架的可自行替换绑定部分即可。 效果图: 消息窗体View代码: <Window x:Class="WpfAppTest.Views.MsgBoxView" xmlns="http://schemas.microsoft.com/winf 阅读全文
posted @ 2024-03-25 16:17 芈璐 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 下载好需要的framework版本,解压出来放到下面路径中,然后重新打开vs即可。 C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework 下载官网:NuGet Gallery | Home 比如下载 阅读全文
posted @ 2024-01-12 18:47 芈璐 阅读(27) 评论(0) 推荐(0) 编辑