09 2021 档案

摘要:https://www.cnblogs.com/qc-id-01/p/7489021.html FolderBrowserDialog dialog = new FolderBrowserDialog(); dialog.Description = "请选择文件路径"; //dialog.RootF 阅读全文
posted @ 2021-09-29 15:25 LuoCore 阅读(405) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/wanghonghu/p/4093411.html set identity_insert 表名 ON --允许对自增列Id插入指定数据 insert into table_name(Id,Name) values(1,'test') set iden 阅读全文
posted @ 2021-09-28 18:16 LuoCore 阅读(177) 评论(0) 推荐(0) 编辑
摘要://// 配置 xml 文档 //var BaseDirectory = AppContext.BaseDirectory; //var xmlFileLoacl = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml"; //var xml 阅读全文
posted @ 2021-09-24 18:07 LuoCore 阅读(300) 评论(0) 推荐(1) 编辑
摘要:https://www.cnblogs.com/xhubobo/p/14445511.html 使用过程参考:在ASP.Net Core Web API中使用Swagger,本文在此基础上阐述如何进行API文档的版本控制。 1、添加API枚举类型 public enum ApiVersion { / 阅读全文
posted @ 2021-09-23 17:41 LuoCore 阅读(343) 评论(0) 推荐(0) 编辑
摘要://先给 DataGridView 赋值一个空表 DataSet ds_temp = 数据库.getDs("select * from 表名 where 1=0"); if (ds_temp != null && ds_temp.Tables.Count > 0) { rcomdgv1.DataSo 阅读全文
posted @ 2021-09-17 20:04 LuoCore 阅读(503) 评论(0) 推荐(0) 编辑
摘要:SQLite Encryption(加密)问题_码农01号的博客-程序员宅基地 - 程序员宅基地 (cxyzjd.com) SQLite Encryption(加密)问题_码农01号的博客-程序员宅基地 - 程序员宅基地 (cxyzjd.com) SQLite Encryption(加密)问题_码农 阅读全文
posted @ 2021-09-17 17:08 LuoCore 阅读(8325) 评论(0) 推荐(4) 编辑
摘要:public static string SetSaveFilePath(string filterType= "所有文件|*.*",string fileName="我的文件",string defaultExt=".txt") { SaveFileDialog dialog = new Save 阅读全文
posted @ 2021-09-15 19:13 LuoCore 阅读(1630) 评论(0) 推荐(0) 编辑
摘要:https://my.oschina.net/smartsmile/blog/814810 //Image转换Bitmap //1. Bitmap img = new Bitmap(imgSelect.Image); //2. Bitmap bmp = (Bitmap)pictureBox1.Ima 阅读全文
posted @ 2021-09-13 11:24 LuoCore 阅读(602) 评论(0) 推荐(0) 编辑
摘要:https://wenku.baidu.com/view/621fbbec0066f5335b81218f.html 一、关闭窗体在c#中退出WinForm 程序包括有很多方法, 如:this.Close();Application. Exit(); Application. ExitThread( 阅读全文
posted @ 2021-09-09 15:29 LuoCore 阅读(864) 评论(0) 推荐(0) 编辑