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