上一页 1 2 3 4 5 6 7 8 9 ··· 45 下一页

2024年8月2日

c++.net 编译错误: C2338:two-phase name lookup is not supported for C++/CLI, C++/CX, or OpenMP...

摘要: c++.net 编译错误: C2338:two-phase name lookup is not supported for C++/CLI, C++/CX, or OpenMP 在Project的 Property页面中, C/C++, Language, Conformance mode: 调整 阅读全文

posted @ 2024-08-02 02:54 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年7月26日

Visual Studio 需要新版本 .net 4.7 但是安装时却告知已经有更高版本,无法安装

摘要: Visual Studio 需要新版本 .net 4.7 但是安装时却告知已经有更高版本,无法安装 实际上应该安装 SDK 版本,或者说 Developer 版本: https://www.microsoft.com/net/download/visual-studio-sdks reference 阅读全文

posted @ 2024-07-26 12:57 norsd 阅读(8) 评论(0) 推荐(0) 编辑

2024年7月25日

Winform 控件大小失常临时解决办法

摘要: 代码 norlib/TestScenarioContainerControlSize 调用SetProcessDPIAware或者修改manifest 来自引用: https://blog.csdn.net/pigautumn/article/details/83900748?tdsourcetag 阅读全文

posted @ 2024-07-25 19:08 norsd 阅读(12) 评论(0) 推荐(0) 编辑

C# Windows Form 设计界面与实际显示不同的问题

摘要: 问题来自于不同的缩放比率,默认是100%,更高的分辨率可能被认为调成125%, 150% 这个可以用DPI表示 目前没有很好解决, 只有一些reference: https://blog.csdn.net/qq_42697866/article/details/104522827 https://s 阅读全文

posted @ 2024-07-25 19:08 norsd 阅读(10) 评论(0) 推荐(0) 编辑

2024年7月20日

Python List Comprehension, Dictionary Comprehension

摘要: [ x*x for x in range(5)] {i: datas[i] for i in range(len(datas))} {0:”hello”}, {1:”abc”}, … reference: https://stackoverflow.com/questions/14507591/py 阅读全文

posted @ 2024-07-20 20:27 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年7月15日

MongoDb Official Driver Get Collection Names

摘要: var m = new MongoClient("mongodb://1.2.3.4/NetWorth"); var db = m.GetDatabase("NetWorth"); var names = db.ListCollections().ToListAsync().Result.ToOth 阅读全文

posted @ 2024-07-15 17:34 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年7月8日

C# MongoDb 数据转化为Json

摘要: var str = "mongodb://127.0.0.1:27017"; var client = new MongoDB.Driver.MongoClient(str); var db = client.GetDatabase("Test2018"); var t = db.ListColle 阅读全文

posted @ 2024-07-08 02:52 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年6月14日

再利用系统盘时,如何删除恢复分区(Recovery Partition)

摘要: 系统盘有一个Recovery Partition,记录了重要的系统信息,不能删除。 Windows 10的 Disk Managment 不提供用户删除这个Partition的选项。 近日我插入一块原系统盘,Format后作为DataDisk,此时需要删除这块硬盘上的RecoveryPartitio 阅读全文

posted @ 2024-06-14 09:06 norsd 阅读(13) 评论(0) 推荐(0) 编辑

2024年6月13日

C# 设置窗体最大化,以及窗体最大化时的坐标

摘要: reference: https://www.cnblogs.com/adandelion/archive/2008/04/03/1136198.html protected override void WndProc(ref Message m) { if (m.Msg == (int)WM.WM 阅读全文

posted @ 2024-06-13 17:15 norsd 阅读(7) 评论(0) 推荐(0) 编辑

2024年5月23日

numpy.ndarray 如何转化为 list

摘要: vXmn.tolist() [[1,2], [1,2], [3,3],…] vXm1.tolist() [[1], [-1], [1]…] vXm1.reshape((m,)).tolist() [1, -1, 1] p.s: m 来自: (m, n) = vXm1.shape 阅读全文

posted @ 2024-05-23 09:33 norsd 阅读(2) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 45 下一页

导航