摘要: Visual Studio 2022 Pro(专业版) TD244-P4NB7-YQ6XK-Y8MMM-YWV2J Visual Studio 2022 Enterprise(企业版) VHF9H-NXBBB-638P6-6JHCY-88JWH 阅读全文
posted @ 2024-01-18 08:40 iCare℃ 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1、前期准备 VS2019、DevExpress19.2、MySql5.7、FreeSql3.2.808、.Net Farmework 4.8 2、创建本次示例中所需数据库及表 我这里建立的数据库为loldb,其下会使用到hero和country两个表 3、在VS2019进行代码实现 1、首先在vs 阅读全文
posted @ 2024-01-05 16:57 iCare℃ 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 1、先创建一些特性以及一个示例类 //应用的目标类型:类,属性,或者其他,是否对同一个目标进行多次应用 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false)] class Do 阅读全文
posted @ 2023-08-18 14:01 iCare℃ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Visual Studio 2019 Enterprise(企业版):BF8Y8-GN2QH-T84XB-QVY3B-RC4DF Visual Studio 2019 Professional(专业版):NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y 阅读全文
posted @ 2022-07-06 08:47 iCare℃ 阅读(6239) 评论(0) 推荐(0) 编辑
摘要: 1、在App.config文件中配置基本的日志信息。 <?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Versi 阅读全文
posted @ 2022-02-17 11:09 iCare℃ 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.zhaozhizheng.com/articles/2020/12/22/1608639433807.html 阅读全文
posted @ 2022-02-09 14:00 iCare℃ 阅读(71) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2022-01-27 16:31 iCare℃ 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 转载于:https://blog.csdn.net/sm_wang/article/details/86210587 阅读全文
posted @ 2022-01-27 10:40 iCare℃ 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1、在测试项目中新建一个winform窗体,设置为Dev类型窗体 2、找到LayoutControl控件并拖拽到窗体上,属性Dock设置为Fill 3、找到GroupControl控件并拖拽到窗体上 4、可以看到拖拽上去之后控件直接覆盖了整个窗体,后面再托GroupControl控件就会产生影响,设 阅读全文
posted @ 2022-01-25 17:15 iCare℃ 阅读(1363) 评论(1) 推荐(0) 编辑
摘要: 1.递归算法 一列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求第*位数是多少,用递归算法实现。 static void Main(string[] args) { int num= cNum(*); Console.WriteLine(num); Console.Read 阅读全文
posted @ 2020-07-07 11:45 iCare℃ 阅读(237) 评论(1) 推荐(0) 编辑