上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 45 下一页

2023年12月22日

小猫咪 打开System Proxy之后无法打开Microsoft Store的问题

摘要: 引用: ww w.9ump.com/archives/79/ 原因是 UWP 看到Proxy连接直接ban, 导致Store(UWP之一) 也被ban了 在General->UWP Loopback, 点击确定,最后在打开的窗体中:Exempt All,然后Save Changes 阅读全文

posted @ 2023-12-22 18:54 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2023年11月28日

MongoDb 安装

摘要: 安装MongoDb 的服务 命令如下: (cmd以管理员运行) 使用 config文件则非常简洁: mongod -config c:\CMongoDb703\mongo.config -serviceName “CMongoDb703” -serviceDisplayName “CMongoDb7 阅读全文

posted @ 2023-11-28 01:35 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2023年8月15日

WPF 添加Image对象,Design显示,实际运行不显示

摘要: WPF 添加Image对象,Design显示,实际运行不显示 Image 使用Project下的图像( ./Test.jpg) , Design中显示正确,实际运行则不显示 问题是这个图像文件 test.jpg 需要右键->属性->Build = None 改为 Build=Resource 问题解 阅读全文

posted @ 2023-08-15 18:23 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2023年8月6日

C++/CLI Managed Function To Native Callback Function

摘要: 一. 关键内核 System::Runtime::InteropServices::Marshal::GetFunctionPointerForDelegate 此函数实现了Delegate转化为Native Function 二. 具体步骤 1. 创造和Native Function 一致的Del 阅读全文

posted @ 2023-08-06 15:55 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2023年7月28日

在TemplateText中使用项目宏$(ProjectDir)

摘要: this.Host.ResolveAssemblyReference("$(ProjectDir)") 阅读全文

posted @ 2023-07-28 15:23 norsd 阅读(1) 评论(0) 推荐(0) 编辑

2023年7月6日

c# - 通过 .net 反射仅获取 protected 成员

摘要: IsPrivate表示方法为private . IsFamily表示方法为protected . IsAssembly表示方法为internal . Reference: https://www.coder.work/article/3080982 阅读全文

posted @ 2023-07-06 22:46 norsd 阅读(1) 评论(0) 推荐(0) 编辑

2023年5月4日

C# 数字 String Format $ 语法

摘要: reference: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/interpolated // 5表示最小宽度(包含小数点,正负号) // 0.0 表示显示的精度 var d1 = 1.2345; 阅读全文

posted @ 2023-05-04 04:48 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2023年4月23日

MongoDb .net Official Driver 一些用法

摘要: MapId: BsonClassMap.RegisterClassMap<NetWorth>(cm => { cm.AutoMap(); cm.MapIdField(n => n.TradingDay); }); Find var b = Builders<NetWorth>.Filter; var 阅读全文

posted @ 2023-04-23 16:47 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2023年4月5日

c# 程序在其他没有Visual Studio 环境下运行异常报错形如: Could not load file or assembly ‘System.ValueTuple

摘要: c# 程序Release版本复制到其他没有Visual Studio环境下 直接异常报错形如: “Could not load file or assembly 'System.ValueTuple…” 其原因可能是因为机器上有不同版本的Dll 在新版本Visual Studio 中CSPROJ会有 阅读全文

posted @ 2023-04-05 10:45 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2023年3月27日

DataGridView 自绘Row的背景

摘要: DataGridView 可以指定row的BackColor, 这个在许多文章中都有, 但是如何自绘Row的背景,这个却不多见。 例如一行背景颜色需要能左侧,中间,右侧的背景各不相同。 实现如下: 1. 要求默认的Cell的背景颜色为Transparent, 否则绘画是无效的 base.CellFo 阅读全文

posted @ 2023-03-27 17:58 norsd 阅读(2) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 45 下一页

导航